/* ==========================================================
   Bright & Tidy Laundry — Premium minimal stylesheet
   ========================================================== */

:root{
  --bg:        #F7F6F2;
  --bg-soft:   #FFFFFF;
  --ink:       #0B1733;
  --ink-2:     #1B2A4E;
  --muted:     #5B6781;
  --line:      #E6E7EA;
  --brand:     #5DD3C5;        /* fresh mint/turquoise */
  --brand-2:   #5AA9F0;        /* soft blue */
  --brand-3:   #B6E7DF;        /* pale mint */
  --accent:    #F2C8D8;        /* warm soft pink */
  --shadow:    0 30px 60px -28px rgba(11,23,51,.18), 0 8px 18px -10px rgba(11,23,51,.10);
  --shadow-lg: 0 60px 120px -40px rgba(11,23,51,.25);
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ------------ Base ------------ */
*, *::before, *::after{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }
html{
  font-family: var(--font-sans);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body{
  overflow-x:hidden;
  font-size:17px;
  line-height:1.6;
  cursor:none;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; color:inherit; }

/* selection */
::selection{ background:var(--ink); color:#fff; }

/* hide native cursor for buttons too */
a, button, [data-magnetic], details summary{ cursor:none; }
@media (max-width: 900px){
  body{ cursor:auto; }
  a, button, [data-magnetic], details summary{ cursor:pointer; }
  .cursor, .cursor-dot{ display:none !important; }
}

.container{
  width:min(1240px, 92vw);
  margin:0 auto;
}

/* Reusable utility */
.eyebrow{
  display:inline-flex; align-items:center; gap:.55em;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:600;
  color:var(--muted);
}
.eyebrow::before{
  content:''; width:24px; height:1px; background:var(--ink); display:inline-block;
}
.section-head{
  max-width:780px; margin-bottom:64px;
}
.section-head h2{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(34px, 4.6vw, 64px);
  line-height:1.05;
  letter-spacing:-0.02em;
  margin:18px 0 18px;
}
.section-head h2 em{
  font-style:italic; font-weight:400; color:var(--brand-2);
}
.section-head p{
  color:var(--muted); font-size:clamp(16px, 1.2vw, 18px);
  max-width:60ch;
}

/* ============ LOADER ============ */
.loader{
  position:fixed; inset:0; z-index:200;
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  flex-direction:column;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.is-done{ opacity:0; visibility:hidden; }
.loader__inner{
  display:flex; flex-direction:column; align-items:center; gap:18px;
}
.loader__logo{ display:flex; align-items:center; gap:12px; }
.loader__bubbles{ width:48px; height:48px; }
.loader__bubbles .bubble{ fill:var(--ink); opacity:0; transform-origin:center; }
.loader__bubbles .bubble.b1{ animation: pop 1.5s var(--ease) infinite; }
.loader__bubbles .bubble.b2{ animation: pop 1.5s var(--ease) infinite .15s; }
.loader__bubbles .bubble.b3{ animation: pop 1.5s var(--ease) infinite .3s; }
@keyframes pop{
  0%, 100%{ opacity:.2; transform:scale(.85); }
  50%{ opacity:1; transform:scale(1.05); }
}
.loader__text{
  font-family:var(--font-display);
  font-weight:500; font-size:28px;
  letter-spacing:-0.02em;
}
.loader__bar{
  width:240px; height:2px; background:rgba(11,23,51,.1);
  position:relative; overflow:hidden; border-radius:99px;
}
.loader__bar span{
  position:absolute; left:0; top:0; height:100%;
  width:0%;
  background:linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius:99px;
  transition: width .4s ease;
}
.loader__count{
  font-feature-settings: "tnum";
  color:var(--muted); font-size:13px;
  letter-spacing:.06em;
}

/* ============ CURSOR — small premium dot + ring ============ */
.cursor, .cursor-dot{ position:fixed; top:0; left:0; pointer-events:none; z-index:300; will-change: transform; }
.cursor{
  width:26px; height:26px;
  border:1px solid rgba(11,23,51,.45);
  border-radius:50%;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), opacity .25s;
}
.cursor-dot{
  width:4px; height:4px;
  background:var(--ink);
  border-radius:50%;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), opacity .25s;
}
.cursor.is-hover{
  width:38px; height:38px;
  border-color: var(--brand-2);
  background: rgba(90,169,240,.08);
}
.cursor.is-hover ~ .cursor-dot{ width:6px; height:6px; background: var(--brand-2); }

/* ============ BG GRADIENT BLOBS ============ */
.bg-gradient{
  position:fixed; inset:0; z-index:-1; overflow:hidden; pointer-events:none;
}
.blob{
  position:absolute; border-radius:50%;
  filter:blur(120px); opacity:.55;
  will-change:transform;
}
.blob-1{ width:60vw; height:60vw; left:-20vw; top:-20vw;
  background:radial-gradient(circle, #B7EDE3 0%, transparent 60%); animation: floatBlob 26s ease-in-out infinite; }
.blob-2{ width:55vw; height:55vw; right:-15vw; top:25vh;
  background:radial-gradient(circle, #C8DEFB 0%, transparent 60%); animation: floatBlob 32s ease-in-out infinite reverse; opacity:.5;}
.blob-3{ width:45vw; height:45vw; left:25vw; bottom:-15vw;
  background:radial-gradient(circle, #FDE3EE 0%, transparent 60%); animation: floatBlob 38s ease-in-out infinite; opacity:.45;}
@keyframes floatBlob{
  0%, 100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(6%,-4%,0) scale(1.1); }
}

/* ============ NAV ============ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
  padding:18px clamp(20px, 4vw, 48px);
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s, padding .4s;
}
.nav.is-scrolled{
  background:rgba(255,255,255,.65);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid rgba(11,23,51,.06);
  padding-top:12px; padding-bottom:12px;
}
.nav__logo{
  display:flex; align-items:center; gap:12px;
  font-family:var(--font-display);
}
.nav__logo-mark{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 10px 24px -10px rgba(90,169,240,.6);
}
.nav__logo-mark svg{
  width:24px; height:24px;
}
.nav__logo-mark svg circle{ fill:#fff; }
.nav__logo-text{ display:flex; flex-direction:column; line-height:1.05; }
.nav__logo-text strong{ font-weight:600; font-size:18px; letter-spacing:-0.01em; }
.nav__logo-text em{ font-style:normal; font-size:11px; color:var(--muted); font-family:var(--font-sans); letter-spacing:.06em; text-transform:uppercase; }
.nav__links{ display:flex; gap:6px; }
.nav__links a{
  padding:10px 14px; border-radius:99px;
  font-size:14.5px; font-weight:500; color:var(--ink-2);
  position:relative;
  transition: color .25s, background .25s;
}
.nav__links a::after{
  content:''; position:absolute; inset:auto auto 7px 50%;
  height:2px; width:0; background:var(--ink);
  transition: width .3s var(--ease);
  transform: translateX(-50%);
  border-radius:2px;
}
.nav__links a:hover::after{ width:18px; }
.nav__cta{ display:flex; align-items:center; gap:10px; }
.nav__phone{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:500;
  padding:10px 14px; border-radius:99px;
  border:1px solid rgba(11,23,51,.12);
  transition: background .25s, border-color .25s;
}
.nav__phone svg{ width:16px; height:16px; stroke:currentColor; stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.nav__phone:hover{ background:#fff; border-color:rgba(11,23,51,.25); }
.nav__burger{ display:none; }

/* Mobile menu */
.mobile-menu{
  position:fixed; top:0; right:0; height:100dvh; width:min(86vw, 380px);
  background:#fff; z-index:99;
  display:flex; flex-direction:column; gap:8px;
  padding:90px 24px 24px;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.is-open{ transform:translateX(0); }
.mobile-menu a{
  font-family:var(--font-display);
  font-size:24px; font-weight:500;
  padding:12px 0; border-bottom:1px solid var(--line);
}
.mobile-menu .btn{ margin-top:16px; justify-content:center; }
.mobile-menu a:last-child{ border:none; }

/* ============ BUTTONS ============ */
.btn{
  position:relative; overflow:hidden;
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 22px;
  border-radius:99px;
  font-weight:600; font-size:14.5px;
  transition: transform .35s var(--ease), background .35s, color .35s, box-shadow .35s;
  white-space:nowrap;
  will-change: transform;
}
.btn svg{ width:18px; height:18px; stroke:currentColor; stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round; transition: transform .35s var(--ease); }
.btn:hover svg{ transform: translateX(3px); }
.btn--primary{
  background:var(--ink); color:#fff;
  box-shadow: 0 18px 30px -14px rgba(11,23,51,.45);
}
.btn--primary::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(93,211,197,.55), transparent 60%);
  opacity:0; transition: opacity .35s;
}
.btn--primary:hover::before{ opacity:1; }
.btn--primary:hover{ box-shadow: 0 30px 50px -18px rgba(11,23,51,.5); }
.btn--ghost{
  background:transparent;
  color:var(--ink);
  border:1.5px solid rgba(11,23,51,.18);
}
.btn--ghost:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }
.btn--lg{ padding:18px 28px; font-size:16px; border-radius:99px; }
.btn .play{
  width:30px; height:30px; border-radius:50%;
  background:var(--ink); color:#fff;
  display:grid; place-items:center;
  transition: background .25s;
}
.btn .play svg{ width:12px; height:12px; fill:currentColor; stroke:none; }
.btn--ghost:hover .play{ background:var(--brand-2); }

/* Ripple effect (added via JS) */
.ripple-circle{
  position:absolute; border-radius:50%;
  background: rgba(255,255,255,.45);
  transform: scale(0); opacity:1;
  animation: ripple .8s var(--ease) forwards;
  pointer-events:none;
}
@keyframes ripple{
  to{ transform: scale(3.5); opacity:0; }
}

.link{
  display:inline-flex; align-items:center; gap:6px;
  font-weight:600; font-size:14.5px;
  padding-bottom:3px;
  border-bottom:1.5px solid currentColor;
  color:var(--ink);
}
.link svg{ width:16px; height:16px; stroke:currentColor; stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round; transition: transform .3s; }
.link:hover svg{ transform: translateX(4px); }

/* ============ HERO ============ */
.hero{
  position:relative;
  min-height: 100vh;
  padding:120px 0 60px;
  overflow:hidden;
}
.hero__canvas{
  position:absolute; inset:0; width:100%; height:100%;
  z-index:0; pointer-events:none;
}
.hero__inner{
  position:relative; z-index:2;
  width:min(1240px, 92vw); margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:60px; align-items:center;
  min-height:calc(100vh - 200px);
}
.hero__pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 14px;
  border-radius:99px;
  background:rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border:1px solid rgba(11,23,51,.08);
  font-size:13px; font-weight:500;
  margin-bottom:24px;
}
.hero__pill .dot{
  width:8px; height:8px; border-radius:50%; background:#3ec792;
  box-shadow:0 0 0 4px rgba(62,199,146,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%, 100%{ box-shadow:0 0 0 4px rgba(62,199,146,.18); }
  50%{ box-shadow:0 0 0 8px rgba(62,199,146,0); }
}
.hero__title{
  font-family:var(--font-display);
  font-weight:500;
  font-size: clamp(40px, 6.2vw, 92px);
  line-height:.98;
  letter-spacing:-0.03em;
  margin:0 0 28px;
}
.hero__title em{ font-style:italic; color:var(--brand-2); font-weight:400; }
.hero__title .line{ display:block; overflow:hidden; }
.hero__title .line > span{
  display:inline-block;
  transform: translateY(110%);
}
.hero.is-ready .hero__title .line > span{
  transform: translateY(0);
  transition: transform 1.1s var(--ease);
}
.hero.is-ready .hero__title .line:nth-child(2) > span{ transition-delay:.12s; }
.hero.is-ready .hero__title .line:nth-child(3) > span{ transition-delay:.24s; }

.hero__sub{
  font-size:clamp(16px, 1.25vw, 19px);
  color:var(--muted);
  max-width:52ch;
  margin:0 0 36px;
}
.hero__ctas{
  display:flex; flex-wrap:wrap; gap:14px;
  margin-bottom:46px;
}
.hero__trust{
  display:flex; align-items:center; gap:16px;
}
.avatars{
  display:flex;
}
.avatars span{
  width:42px; height:42px;
  border-radius:50%; border:2.5px solid var(--bg);
  margin-left:-12px;
  background-size:cover; background-position:center;
}
.avatars span:nth-child(1){ background-image: linear-gradient(135deg, #FFD3B6 0%, #FFAAA5 100%); margin:0; }
.avatars span:nth-child(2){ background-image: linear-gradient(135deg, #A8E6CF 0%, #6FE0D6 100%); }
.avatars span:nth-child(3){ background-image: linear-gradient(135deg, #C8DEFB 0%, #5AA9F0 100%); }
.avatars span:nth-child(4){ background-image: linear-gradient(135deg, #F2C8D8 0%, #E76F95 100%); }
.trust__text p{ margin:2px 0 0; font-size:14px; color:var(--muted); }
.stars{ display:flex; gap:2px; }
.stars svg{ width:14px; height:14px; fill:#F5B400; }

/* hero scene */
.hero__scene{
  position:relative;
  width:100%; height:520px;
}
.floater{
  position:absolute;
  animation: floatY 7s ease-in-out infinite;
}
.floater.f1{ top:6%;  right:6%;  animation-delay: 0s; }
.floater.f2{ top:42%; left:-6%;  animation-delay: 1.6s; }
.floater.f3{ bottom:6%; right:18%; animation-delay: 3.2s; }
@keyframes floatY{
  0%, 100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-18px) rotate(-1.5deg); }
}
.glass-card{
  display:flex; align-items:center; gap:12px;
  padding:14px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.75);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.8);
  box-shadow: 0 20px 50px -22px rgba(11,23,51,.22), inset 0 1px 0 rgba(255,255,255,.7);
}
.glass-card .ico{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--brand) 0%, #94E8DC 100%);
  color:#fff;
}
.glass-card .ico--mint{ background: linear-gradient(135deg, #B6E7DF, #6FE0D6); }
.glass-card .ico--blue{ background: linear-gradient(135deg, #C8DEFB, #5AA9F0); }
.glass-card .ico svg{ width:20px; height:20px; stroke:#fff; stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.glass-card strong{ display:block; font-size:14.5px; font-weight:600; line-height:1.2; }
.glass-card em{ display:block; font-style:normal; font-size:12.5px; color:var(--muted); }

/* hero marquee */
.hero__marquee{
  position:absolute; bottom:0; left:0; right:0;
  border-top:1px solid rgba(11,23,51,.08);
  background: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  overflow:hidden;
  padding:18px 0;
  z-index:3;
}
.marquee__track{
  display:flex; gap:48px;
  white-space:nowrap;
  animation: marquee 40s linear infinite;
  font-family:var(--font-display);
  font-style:italic;
  font-size:18px;
  color:var(--ink-2);
}
.marquee__track span{ display:inline-block; }
@keyframes marquee{
  to{ transform: translateX(-50%); }
}

/* hero scroll cue */
.hero__scroll{
  position:absolute; bottom:80px; left:50%;
  transform: translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  z-index:4;
}
.hero__scroll span{
  width:1px; height:50px;
  background:linear-gradient(to bottom, transparent, var(--ink), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%, 100%{ transform: translateY(-12px); opacity:.4; }
  50%{ transform: translateY(0); opacity:1; }
}
.hero__scroll em{
  font-style:normal; font-size:11px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--muted);
}

/* ============ REVEAL UTILITIES ============ */
.reveal-up{
  opacity:0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-up.is-in{ opacity:1; transform: none; }

/* text-reveal — split via JS into .word spans */
.reveal-text .word{
  display:inline-block; overflow:hidden;
}
.reveal-text .word > span{
  display:inline-block;
  transform: translateY(110%);
  transition: transform .9s var(--ease);
}
.reveal-text.is-in .word > span{ transform: translateY(0); }
.reveal-text .word{ margin-right: .22em; }

/* image reveal mask */
.img-reveal{
  position:relative; overflow:hidden;
}
.img-reveal::after{
  content:''; position:absolute; inset:0; background:var(--bg);
  transform-origin: left;
  transition: transform 1.1s var(--ease);
}
.img-reveal.is-in::after{ transform: scaleX(0); }

/* ============ HOW IT WORKS (horizontal) ============ */
.how{ padding: 140px 0 80px; position:relative; }
.how__wrap{
  position:relative;
  height: 500vh; /* drives horizontal scroll length */
}
.how__track{
  position:sticky; top:0;
  display:flex; height:100vh; align-items:center;
  padding: 0 8vw;
  gap: 60px;
  will-change: transform;
}
.step{
  flex: 0 0 480px;
  background: #fff;
  border-radius: 32px;
  padding: 38px 36px 40px;
  box-shadow: var(--shadow);
  position:relative;
  transition: transform .4s var(--ease), box-shadow .4s;
  display:flex; flex-direction:column;
  min-height: 540px;
}
.step:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.step__num{
  font-family:var(--font-display);
  font-size:14px; font-weight:600;
  color:var(--muted);
  letter-spacing:.18em;
}
.step h3{
  font-family:var(--font-display);
  font-weight:500;
  font-size:30px; line-height:1.1;
  margin: 18px 0 12px;
}
.step p{
  color:var(--muted); margin:0;
  font-size:16px;
}
.step__art{
  margin-top: 26px;
  height: 280px;
  border-radius: 22px;
  background: linear-gradient(160deg, #F4F7FB 0%, #E9F4F2 100%);
  position:relative; overflow:hidden;
  display:grid; place-items:center;
}

/* book art (phone) */
.phone{
  width:140px; height:240px;
  background:#fff; border-radius:24px;
  box-shadow: var(--shadow);
  padding:14px 12px;
  border:6px solid #0B1733;
}
.phone__inner{ display:flex; flex-direction:column; gap:10px; height:100%; }
.bubble-line{ display:flex; gap:4px; }
.bubble-line span{ width:5px; height:5px; border-radius:50%; background:var(--brand); }
.phone__row{ display:flex; gap:6px; }
.phone__row div{ flex:1; height:14px; border-radius:5px; background:#EAF2F8; }
.phone__row div:nth-child(2){ background:#F4E4ED; flex:.6; }
.phone__btn{
  margin-top:auto; padding:12px;
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff; text-align:center;
  border-radius:10px; font-size:11px; font-weight:600;
}

/* van */
.art--van{ position:relative; background: linear-gradient(160deg, #EAF4F3, #DCEAF8); }
.van-svg{ width:80%; height:auto; position:relative; z-index:2; animation: vanShake 4s ease-in-out infinite; }
@keyframes vanShake{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}
.puff{ position:absolute; left:5%; bottom:18%; width:20px; height:20px; border-radius:50%; background:rgba(255,255,255,.7); animation: puff 3s ease-in-out infinite; }
.puff.p2{ left:12%; width:14px; height:14px; animation-delay:.6s; }
.puff.p3{ left:0%; bottom:26%; width:10px; height:10px; animation-delay:1.2s; }
@keyframes puff{
  0%{ transform: translateX(0) scale(.6); opacity:.9; }
  100%{ transform: translateX(-40px) scale(1.4); opacity:0; }
}

/* washer */
.washer{
  width:200px; height:240px;
  background:#fff; border-radius:18px;
  border:6px solid #0B1733;
  padding:14px;
  display:flex; flex-direction:column; gap:10px;
  position:relative;
}
.washer__top{ display:flex; gap:8px; }
.washer__top span{ width:10px; height:10px; border-radius:50%; background:#E7EEF6; }
.washer__top span:first-child{ background:var(--brand); }
.washer__drum{
  flex:1;
  background:#0B1733;
  border-radius:14px;
  position:relative;
  display:grid; place-items:center;
  overflow:hidden;
}
.drum__spin{
  width:80%; height:80%; border-radius:50%;
  background:radial-gradient(circle at 30% 30%, #5DD3C5, #5AA9F0 60%, #0B1733 100%);
  position:relative;
  animation: spin 3.5s linear infinite;
  display:grid; place-items:center;
}
.drum__spin i{
  position:absolute;
  width:18px; height:8px; background:#fff; opacity:.7; border-radius:4px;
}
.drum__spin i:nth-child(1){ top:20%; left:20%; transform:rotate(-20deg);}
.drum__spin i:nth-child(2){ top:60%; left:55%; transform:rotate(40deg);}
.drum__spin i:nth-child(3){ top:30%; left:60%; transform:rotate(20deg);}
.drum__spin i:nth-child(4){ top:55%; left:18%; transform:rotate(-50deg);}
@keyframes spin{ to{ transform: rotate(360deg);} }
.steam{ position:absolute; top:6px; width:14px; height:14px; background:rgba(255,255,255,.85); border-radius:50%; animation: steamUp 3s ease-in-out infinite; }
.art--wash .steam.s1{ left:30%; }
.art--wash .steam.s2{ left:50%; animation-delay:.5s; }
.art--wash .steam.s3{ left:70%; animation-delay:1s; }
@keyframes steamUp{
  0%{ transform: translateY(0) scale(.6); opacity:0; }
  20%{ opacity:.8; }
  100%{ transform: translateY(-60px) scale(1.3); opacity:0; }
}

/* fold */
.art--fold{ background: linear-gradient(160deg, #FDEEEE 0%, #F0E9F8 100%); }
.stack{
  position:relative;
  width:200px; height:220px;
}
.fold{
  position:absolute; left:50%; transform:translateX(-50%);
  width:180px; height:30px; border-radius:6px;
  box-shadow: 0 8px 20px -12px rgba(11,23,51,.3);
  animation: foldDrop .6s var(--ease) backwards;
}
.fold.f-a{ bottom:0;  background:linear-gradient(135deg, #C8DEFB, #5AA9F0); }
.fold.f-b{ bottom:36px; background:linear-gradient(135deg, #F2C8D8, #E89BB7); width:170px; animation-delay:.15s;}
.fold.f-c{ bottom:72px; background:linear-gradient(135deg, #B6E7DF, #6FE0D6); width:160px; animation-delay:.3s;}
.fold.f-d{ bottom:108px; background:linear-gradient(135deg, #FFE7B5, #FFC97A); width:150px; animation-delay:.45s;}
@keyframes foldDrop{
  from{ opacity:0; transform: translate(-50%, -30px); }
  to{ opacity:1; transform: translate(-50%, 0); }
}
.tape{
  position:absolute;
  bottom:14px; right:14px;
  font-family:var(--font-display); font-style:italic;
  background:#fff; padding:6px 12px; border-radius:99px;
  font-size:12px;
  box-shadow: var(--shadow);
}

/* deliver */
.art--deliver{ background: linear-gradient(160deg, #EAF4F3, #FAF6E8); }
.door{
  position:relative;
  width:200px; height:240px;
  display:grid; place-items:center;
}
.door__frame{
  width:120px; height:200px;
  background: linear-gradient(180deg, #fff, #F2EAD6);
  border-radius:60px 60px 6px 6px;
  border:5px solid #0B1733;
  position:relative;
}
.door__frame .knob{
  position:absolute; right:10px; top:50%;
  width:8px; height:8px; border-radius:50%;
  background:#0B1733;
}
.bag{
  position:absolute;
  right:-10px; bottom:0;
  animation: bagBounce 1.4s ease-in-out infinite;
}
.bag__handle{
  width:34px; height:18px; border:4px solid #0B1733;
  border-bottom:none; border-radius:30px 30px 0 0;
  margin: 0 auto;
}
.bag__body{
  width:64px; height:80px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius:12px;
  color:#fff; font-family:var(--font-display); font-weight:600;
  display:grid; place-items:center;
  box-shadow: 0 12px 24px -10px rgba(11,23,51,.3);
}
@keyframes bagBounce{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.ding{
  position:absolute; top:14px; left:14px;
  width:32px; height:32px; border-radius:50%;
  background:#fff; box-shadow: var(--shadow);
  display:grid; place-items:center;
  font-size:18px; color:var(--brand-2);
  animation: ding 1.8s ease-in-out infinite;
}
@keyframes ding{
  0%, 100%{ transform: rotate(-12deg); }
  50%{ transform: rotate(12deg); }
}

/* progress */
.how__progress{
  width:min(1240px, 92vw);
  margin: 30px auto 0;
  height:3px; background:rgba(11,23,51,.08); border-radius:99px;
  overflow:hidden;
}
.how__progress-bar{
  height:100%; width:0%;
  background:linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius:99px;
  transition: width .15s linear;
}

/* ============ SERVICES ============ */
.services{ padding: 140px 0 80px; }
.services__grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service{
  background:#fff;
  border-radius: var(--r-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  display:flex; flex-direction:column;
  transition: transform .5s var(--ease), box-shadow .5s;
  transform-style: preserve-3d;
  will-change: transform;
}
.service:hover{ box-shadow: var(--shadow-lg); }
.service__media{
  position:relative;
  aspect-ratio: 4/3;
  overflow:hidden;
}
.service__media img{
  width:100%; height:100%; object-fit:cover;
  transition: transform 1s var(--ease);
}
.service:hover .service__media img{ transform: scale(1.06); }
.service__price{
  position:absolute; right:14px; top:14px;
  padding:10px 14px;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-radius: 99px;
  font-weight:600; font-size:14px;
}
.service__price small{ font-weight:500; color:var(--muted); font-size:12px; }
.service__body{
  padding: 26px 26px 30px;
  display:flex; flex-direction:column; gap:14px; flex:1;
}
.service__body h3{
  font-family:var(--font-display); font-weight:500;
  font-size:26px; margin:0;
}
.service__body p{ margin:0; color:var(--muted); }
.service__body ul{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:6px;
  font-size:14.5px; color:var(--ink-2);
}
.service__body ul li{ position:relative; padding-left:22px; }
.service__body ul li::before{
  content:''; position:absolute; left:0; top:.55em;
  width:12px; height:6px;
  border-left:2px solid var(--brand-2);
  border-bottom:2px solid var(--brand-2);
  transform: rotate(-45deg);
}
.service__body .link{ margin-top:auto; align-self:flex-start; }

/* ============ WHY ============ */
.why{ padding: 140px 0 80px; }
.why__sticky{
  position:relative;
}
.why__inner{
  display:grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items:start;
}
.why__left{ position:sticky; top:120px; }
.why__left h2{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(34px, 4.6vw, 60px);
  letter-spacing:-0.02em; line-height:1.05;
  margin:18px 0 22px;
}
.why__left h2 em{ font-style:italic; color:var(--brand-2); font-weight:400; }
.why__left p{ color:var(--muted); }
.why__rating{
  display:flex; align-items:center; gap:18px;
  margin-top:36px;
  padding:20px 22px;
  background:#fff; border-radius: 18px;
  box-shadow: var(--shadow);
}
.why__rating .big{
  font-family:var(--font-display); font-size:48px; font-weight:500;
  line-height:1;
}
.why__rating small{ display:block; color:var(--muted); font-size:13px; margin-top:4px; }
.why__right{
  display:grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.why__card{
  padding:30px 26px;
  border-radius:24px; background:#fff;
  box-shadow: var(--shadow);
  display:flex; flex-direction:column; gap:14px;
  transition: transform .4s var(--ease);
}
.why__card:hover{ transform: translateY(-6px); }
.why__icon{
  width:48px; height:48px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--brand-3), var(--brand));
  color:#0B1733;
}
.why__icon svg{ width:22px; height:22px; stroke:#0B1733; stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.why__card h3{ font-family:var(--font-display); font-weight:500; font-size:22px; margin:0; }
.why__card p{ margin:0; color:var(--muted); font-size:15px; }

/* ============ JOURNEY ============ */
.journey{ padding: 100px 0 100px; }
.journey__wrap{
  position:relative; height: 340px; margin-top:60px;
  background:#fff; border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 40px;
  overflow:hidden;
}
.journey__path{
  position:absolute; left:0; top:0; width:100%; height:100%;
}
.journey__van{
  position:absolute; left:0; top:0;
  width:80px;
  transform: translate(-50%, -50%);
  z-index:3;
  filter: drop-shadow(0 8px 16px rgba(11,23,51,.25));
}
.journey__pin{
  position:absolute;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  font-size:13px;
}
.journey__pin span{
  width:18px; height:18px; border-radius:50%;
  background:#fff; border:4px solid var(--brand-2);
  box-shadow: 0 8px 20px -8px rgba(90,169,240,.5);
}
.journey__pin strong{ font-family:var(--font-display); font-size:16px; font-weight:600; }
.journey__pin em{ font-style:normal; color:var(--muted); font-size:12px; }
.journey__pin.pin--1{ left:3%;  top:80%; }
.journey__pin.pin--2{ left:34%; top:30%; }
.journey__pin.pin--3{ left:62%; top:65%; }
.journey__pin.pin--4{ right:3%; top:25%; }

/* ============ BEFORE/AFTER ============ */
.ba{ padding: 100px 0; }
.ba__box{
  position:relative;
  width:100%;
  max-width: 1100px; margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 32px;
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  user-select:none; touch-action:none;
}
.ba__img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.ba__before{
  filter: grayscale(.55) brightness(.78) contrast(1.05) sepia(.18);
}
.ba__after-wrap{
  position:absolute; top:0; left:0; height:100%;
  width:50%;
  overflow:hidden;
}
.ba__after-wrap img{
  position:absolute; top:0; left:0; height:100%;
  width: var(--ba-box-w, 100vw);
  max-width:none; object-fit:cover;
  filter: saturate(1.1) brightness(1.04);
}
.ba__handle{
  position:absolute; top:0; bottom:0;
  left:50%;
  width:46px; transform: translateX(-50%);
  display:grid; place-items:center;
  cursor: ew-resize;
}
.ba__handle::before{
  content:''; position:absolute; top:0; bottom:0; left:50%;
  width:3px; background:#fff;
  transform: translateX(-50%);
  box-shadow: 0 0 30px rgba(0,0,0,.4);
}
.ba__handle svg{
  position:relative; z-index:2;
  width:24px; height:24px;
  background:#fff;
  padding:10px;
  box-sizing:content-box;
  border-radius:50%;
  stroke:var(--ink); stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round;
  box-shadow: 0 10px 30px rgba(11,23,51,.3);
}
.ba__label{
  position:absolute; top:18px;
  padding:6px 14px; border-radius:99px;
  background:rgba(0,0,0,.4); color:#fff;
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  backdrop-filter: blur(6px);
}
.ba__label--before{ left:18px; }
.ba__label--after{ right:18px; }

/* ============ PRICING ============ */
.pricing{ padding: 140px 0 80px; }
.pricing__toggle{
  display:inline-flex; gap:6px;
  padding:5px;
  background:#fff; border-radius: 99px;
  box-shadow: var(--shadow);
  margin-bottom:60px;
}
.pricing__toggle button{
  padding: 12px 22px;
  border-radius:99px;
  font-weight:600; font-size:14.5px; color:var(--muted);
  transition: background .3s, color .3s;
  display:inline-flex; align-items:center; gap:8px;
}
.pricing__toggle button em{
  font-style:normal; font-size:11px;
  padding:3px 8px; border-radius:99px;
  background: var(--brand-3); color: var(--ink);
}
.pricing__toggle button.active{
  background: var(--ink); color: #fff;
}
.pricing__grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap:28px;
}
.plan{
  background:#fff; border-radius: var(--r-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow);
  display:flex; flex-direction:column; gap:22px;
  position:relative;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.plan:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan h3{ font-family:var(--font-display); font-weight:500; font-size:28px; margin:0; }
.plan p{ margin:0; color:var(--muted); font-size:14.5px; }
.plan__price{
  display:flex; align-items:baseline; gap:8px;
}
.plan__price .amount{
  font-family:var(--font-display); font-weight:500;
  font-size:56px; line-height:1;
  letter-spacing:-0.02em;
  transition: opacity .25s;
}
.plan__price .unit{ color:var(--muted); font-size:14.5px; }
.plan ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; font-size:14.5px; color:var(--ink-2); }
.plan ul li{ position:relative; padding-left:22px; }
.plan ul li::before{
  content:''; position:absolute; left:0; top:.55em;
  width:10px; height:5px; border-left:2px solid var(--brand); border-bottom:2px solid var(--brand);
  transform: rotate(-45deg);
}
.plan--featured{
  background: linear-gradient(160deg, #0B1733 0%, #1B2A4E 100%);
  color:#fff;
}
.plan--featured h3, .plan--featured .amount{ color:#fff; }
.plan--featured p, .plan--featured .unit, .plan--featured ul{ color:rgba(255,255,255,.7); }
.plan--featured ul li::before{ border-color:var(--brand); }
.plan--featured .btn--primary{
  background:#fff; color:var(--ink);
  box-shadow: 0 20px 30px -14px rgba(255,255,255,.2);
}
.plan__badge{
  position:absolute; right:22px; top:22px;
  padding:6px 12px; border-radius:99px;
  background: var(--brand); color: var(--ink);
  font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
}
.pricing__note{ text-align:center; margin-top:36px; color:var(--muted); }
.pricing__note a{ color:var(--ink); border-bottom:1.5px solid var(--brand-2); padding-bottom:2px; font-weight:600; }

/* ============ REVIEWS ============ */
.reviews{ padding: 100px 0; }
.reviews__grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap:28px;
}
.review{
  background:#fff;
  border-radius: var(--r-lg);
  padding: 36px 34px 30px;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.review:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review .stars{ margin-bottom:18px; }
.review p{
  font-family:var(--font-display);
  font-weight:400; font-size:22px;
  line-height:1.4; letter-spacing:-0.01em;
  margin: 0 0 28px;
}
.review footer{
  display:flex; align-items:center; gap:14px;
}
.review .avatar{
  width:48px; height:48px; border-radius:50%;
  background-size:cover; background-position:center;
}
.review .avatar.a1{ background: linear-gradient(135deg, #FFD3B6, #FFAAA5); }
.review .avatar.a2{ background: linear-gradient(135deg, #A8E6CF, #6FE0D6); }
.review .avatar.a3{ background: linear-gradient(135deg, #C8DEFB, #5AA9F0); }
.review .avatar.a4{ background: linear-gradient(135deg, #F2C8D8, #E76F95); }
.review footer strong{ display:block; font-weight:600; }
.review footer em{ font-style:normal; color:var(--muted); font-size:13px; }

/* ============ FAQ ============ */
.faq{ padding: 100px 0; }
.faq__inner{ display:grid; grid-template-columns: 1fr 1.4fr; gap:80px; align-items:start; }
.faq__left{ position:sticky; top:120px; }
.faq__left h2{
  font-family:var(--font-display); font-weight:500;
  font-size: clamp(32px, 4vw, 56px);
  line-height:1.05; letter-spacing:-0.02em;
  margin: 18px 0 18px;
}
.faq__left h2 em{ font-style:italic; color:var(--brand-2); font-weight:400; }
.faq__left p{ color:var(--muted); margin-bottom:30px; }
.faq__list{ display:flex; flex-direction:column; gap:12px; }
.faq__item{
  background:#fff; border-radius: 20px;
  box-shadow: 0 14px 30px -22px rgba(11,23,51,.18);
  overflow:hidden;
  transition: box-shadow .3s;
}
.faq__item summary{
  list-style:none;
  padding: 24px 28px;
  font-family:var(--font-display);
  font-weight:500; font-size:21px;
  letter-spacing:-0.01em;
  display:flex; justify-content:space-between; align-items:center;
  gap: 18px;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.chev{
  width:30px; height:30px; border-radius:50%;
  background:#F4F7FB;
  position:relative; flex-shrink:0;
  transition: transform .4s var(--ease), background .3s;
}
.chev::before, .chev::after{
  content:''; position:absolute;
  left:50%; top:50%; background:var(--ink);
  border-radius:2px;
  transform: translate(-50%, -50%);
}
.chev::before{ width:12px; height:2px; }
.chev::after{ width:2px; height:12px; transition: transform .3s; }
.faq__item[open] .chev{ background: var(--ink); }
.faq__item[open] .chev::before, .faq__item[open] .chev::after{ background:#fff; }
.faq__item[open] .chev::after{ transform: translate(-50%, -50%) rotate(90deg); }
.faq__body{
  padding: 0 28px 26px;
  color:var(--muted);
  animation: faqOpen .4s var(--ease);
}
@keyframes faqOpen{
  from{ opacity:0; transform: translateY(-6px); }
  to{ opacity:1; transform: none; }
}
.faq__body p{ margin:0; }

/* ============ FINAL CTA ============ */
.cta{
  position:relative;
  padding: 140px 0;
  overflow:hidden;
  background: linear-gradient(160deg, #0B1733 0%, #102050 60%, #163477 100%);
  color: #fff;
  margin: 0 clamp(20px, 4vw, 60px);
  border-radius: 40px;
}
.cta__bg{
  position:absolute; inset:0; pointer-events:none;
}
.bubbles{
  position:absolute; inset:0;
}
.bubbles span{
  position:absolute; bottom:-50px;
  width:30px; height:30px; border-radius:50%;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  animation: bubbleUp 12s linear infinite;
}
.bubbles span:nth-child(1){ left:8%;  width:60px; height:60px; animation-delay:0s; }
.bubbles span:nth-child(2){ left:18%; width:24px; height:24px; animation-delay:1.6s; animation-duration:14s; }
.bubbles span:nth-child(3){ left:30%; width:80px; height:80px; animation-delay:3.2s; animation-duration:16s; }
.bubbles span:nth-child(4){ left:42%; width:38px; height:38px; animation-delay:5s;  animation-duration:11s; }
.bubbles span:nth-child(5){ left:55%; width:52px; height:52px; animation-delay:1s;  animation-duration:13s; }
.bubbles span:nth-child(6){ left:65%; width:30px; height:30px; animation-delay:3s;  animation-duration:15s; }
.bubbles span:nth-child(7){ left:75%; width:90px; height:90px; animation-delay:0s;  animation-duration:18s; }
.bubbles span:nth-child(8){ left:85%; width:20px; height:20px; animation-delay:2s;  }
.bubbles span:nth-child(9){ left:92%; width:46px; height:46px; animation-delay:4s; animation-duration:14s; }
.bubbles span:nth-child(10){ left:48%; width:18px; height:18px; animation-delay:6s; }
@keyframes bubbleUp{
  0%{ transform: translateY(0) translateX(0); opacity:0; }
  10%{ opacity:1; }
  100%{ transform: translateY(-120vh) translateX(40px); opacity:0; }
}
.cta__inner{
  position:relative; z-index:2;
  text-align:center;
  display:flex; flex-direction:column; align-items:center;
}
.cta__inner .eyebrow{ color: rgba(255,255,255,.7); }
.cta__inner .eyebrow::before{ background: rgba(255,255,255,.5); }
.cta h2{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(40px, 6vw, 84px); line-height:1; letter-spacing:-0.03em;
  margin: 18px 0 20px;
}
.cta h2 em{ font-style:italic; color: var(--brand); font-weight:400; }
.cta p{ color:rgba(255,255,255,.78); max-width:55ch; font-size:18px; }
.cta__actions{
  display:flex; gap:14px; flex-wrap:wrap; justify-content:center;
  margin: 36px 0 30px;
}
.cta .btn--primary{
  background:#fff; color:var(--ink);
}
.cta .btn--primary svg{ stroke:var(--ink); }
.cta .btn--ghost{
  color:#fff; border-color: rgba(255,255,255,.3);
}
.cta .btn--ghost:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.cta__bullets{
  list-style:none; padding:0; margin:0;
  display:flex; gap:22px; flex-wrap:wrap; justify-content:center;
  color:rgba(255,255,255,.7);
  font-size:14px;
}

/* ============ FOOTER ============ */
.footer{ padding: 80px 0 30px; }
.footer__inner{
  display:grid; grid-template-columns: 1.2fr 2fr; gap:60px;
  align-items:start;
}
.footer__brand{
  display:flex; flex-direction:column; align-items:flex-start; gap:14px;
}
.footer__brand strong{
  font-family:var(--font-display); font-weight:500; font-size:24px;
}
.footer__brand p{ color:var(--muted); margin:0; max-width:42ch; }
.footer__cols{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:40px;
}
.footer__cols h5{
  font-size:13px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--ink); margin:0 0 18px;
}
.footer__cols a, .footer__cols p{
  display:block; color:var(--muted); margin:0 0 8px; font-size:14.5px;
  transition: color .25s;
}
.footer__cols a:hover{ color:var(--ink); }
.footer__bottom{
  margin-top:60px; padding-top:24px;
  border-top:1px solid var(--line);
  display:flex; justify-content:space-between; gap:14px;
  color:var(--muted); font-size:13px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px){
  .nav__links{ display:none; }
  .nav__phone span{ display:none; }
  .services__grid, .pricing__grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews__grid{ grid-template-columns: 1fr; }
  .why__inner, .faq__inner{ grid-template-columns: 1fr; gap:40px; }
  .why__left, .faq__left{ position:static; }
}
@media (max-width: 900px){
  .nav__burger{
    display:flex; flex-direction:column; gap:5px;
    width:42px; height:42px; border-radius:50%;
    background:#fff; box-shadow:var(--shadow);
    align-items:center; justify-content:center;
  }
  .nav__burger span{ width:18px; height:2px; background:var(--ink); border-radius:2px; transition: transform .3s, opacity .3s; }
  .nav__burger.is-open span:nth-child(1){ transform: translateY(3.5px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2){ transform: translateY(-3.5px) rotate(-45deg); }
  .nav__cta{ display:none; }
  .hero{ padding:120px 0 100px; }
  .hero__inner{ grid-template-columns: 1fr; gap:40px; min-height:auto; }
  .hero__scene{ height:380px; }
  .hero__scroll{ display:none; }
  .step{ flex: 0 0 84vw; min-height: 480px; padding: 28px 24px 32px; }
  .step__art{ height: 220px; }
  .services__grid, .pricing__grid{ grid-template-columns: 1fr; }
  .why__right{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; }
  .footer__cols{ grid-template-columns: 1fr 1fr; }
  .ba__box{ aspect-ratio: 4/5; }
  .journey__wrap{ height: 240px; padding: 20px; }
  .journey__pin{ font-size:11px; }
  .journey__pin strong{ font-size:13px; }
  .journey__pin em{ font-size:10px; }
  .journey__van{ width:60px; }
  .cta{ margin: 0 16px; padding: 90px 0; border-radius: 28px; }
  .section-head{ margin-bottom:40px; }
  .footer__bottom{ flex-direction:column; }
}
@media (max-width: 540px){
  .nav__logo-text em{ display:none; }
  .footer__cols{ grid-template-columns: 1fr; gap:24px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__title .line > span, .reveal-up, .reveal-text .word > span{
    transform:none !important; opacity:1 !important;
  }
}
