/* ============================================
   SENDLY - Liquid Glass Premium Design System
   ============================================ */
:root {
  --primary: #398DDD;
  --primary-dark: #3776D5;
  --primary-light: #6BB0EE;
  --primary-ultra: #E8F2FC;
  --coral: #EA6365;
  --black: #222;
  --white: #fff;
  --off-white: #FAFAFA;
  --g50: #F7F8FA;
  --g100: #F0F1F4;
  --g200: #E2E4E9;
  --g300: #C8CCD4;
  --g400: #717985;
  --g500: #6B7280;
  --g600: #4B5563;
  --g700: #374151;
  --font: 'Montserrat', sans-serif;
  --container: 1320px;
  --gutter: 2rem;
  --header-h: 80px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease2: cubic-bezier(.65, 0, .35, 1);
  --dur: .6s;
  --dur-f: .3s;
  --dur-s: 1s;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .1);
  /* Glass tokens */
  --glass-bg: rgba(255, 255, 255, .65);
  --glass-border: rgba(255, 255, 255, .75);
  --glass-blur: 20px;
  --glass-bg-dark: rgba(57, 141, 221, .08);
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h)
}

html.lenis,
html.lenis body {
  height: auto
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important
}

.lenis.lenis-stopped {
  overflow: hidden
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--g600);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit
}

::selection {
  background: var(--primary);
  color: #fff
}

/* ---- LOADER ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem
}

.loader__logo {
  width: 140px;
  animation: pulse 1.5s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: .5;
    transform: scale(.96)
  }

  50% {
    opacity: 1;
    transform: scale(1)
  }
}

.loader__bar {
  width: 200px;
  height: 3px;
  background: var(--g100);
  border-radius: var(--r-full);
  overflow: hidden
}

.loader__progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: var(--r-full);
  animation: load 1.5s var(--ease) forwards
}

@keyframes load {
  to {
    width: 100%
  }
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  /* Apple Liquid Glass Rim Lighting */
  box-shadow:
    inset 0 -1px 1px rgba(255, 255, 255, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    0 4px 24px rgba(0, 0, 0, 0.04);
}

.header__container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.header__logo img {
  height: 36px;
  width: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.header__logo:hover img {
  transform: scale(1.05);
}

.header__logo:active img {
  transform: scale(0.95);
}

.header__nav {
  display: none;
  gap: 2.5rem
}

@media(min-width:1024px) {
  .header__nav {
    display: flex
  }
}

.header__link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--g600);
  letter-spacing: -.01em;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
}

.header__link:hover {
  color: var(--primary);
  background: rgba(57, 141, 221, 0.05);
  transform: translateY(-1px);
}

.header__link:active {
  transform: scale(0.95);
  background: rgba(57, 141, 221, 0.1);
}

.header__cta {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.5rem;
  background: var(--primary);
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  letter-spacing: -.01em;
  /* Liquid Inner Glow */
  box-shadow:
    0 4px 12px rgba(57, 141, 221, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

@media(min-width:1024px) {
  .header__cta {
    display: flex
  }
}

.header__cta:hover {
  background: var(--primary-dark);
  transform: scale(1.02) translateY(-2px);
  box-shadow:
    0 8px 24px rgba(57, 141, 221, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.header__cta:active {
  transform: scale(0.95) translateY(0);
  background: var(--primary);
  box-shadow:
    0 2px 4px rgba(57, 141, 221, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0
}

@media(min-width:1024px) {
  .header__burger {
    display: none
  }
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: var(--r-full);
  transition: all var(--dur-f) var(--ease)
}

.header__burger span:nth-child(1) {
  width: 100%
}

.header__burger span:nth-child(2) {
  width: 70%
}

.header__burger span:nth-child(3) {
  width: 85%
}

.header__burger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  width: 0
}

.header__burger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 100%
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease)
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible
}

.mobile-menu__inner {
  text-align: center
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem
}

.mobile-menu__link {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.03em;
  transition: color var(--dur-f);
  opacity: 0;
  transform: translateY(20px)
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
  transition: transform .5s var(--ease), opacity .5s var(--ease)
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) {
  transition-delay: .1s
}

.mobile-menu.is-open .mobile-menu__link:nth-child(2) {
  transition-delay: .15s
}

.mobile-menu.is-open .mobile-menu__link:nth-child(3) {
  transition-delay: .2s
}

.mobile-menu.is-open .mobile-menu__link:nth-child(4) {
  transition-delay: .25s
}

.mobile-menu.is-open .mobile-menu__link:nth-child(5) {
  transition-delay: .3s
}

.mobile-menu__link:hover {
  color: var(--primary)
}

.mobile-menu__cta {
  display: inline-flex;
  padding: .875rem 2.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-full);
  opacity: 0;
  transform: translateY(20px)
}

.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
  transition: transform .5s var(--ease) .35s, opacity .5s var(--ease) .35s
}

/* ---- SHARED COMPONENTS ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--r-full)
}

.pill--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--primary);
  border: 1px solid var(--glass-border);
  box-shadow: 0 2px 12px rgba(57, 141, 221, .08)
}

.pill--light {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: -.01em;
  border-radius: var(--r-full);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.btn--primary {
  padding: .875rem 2rem;
  background: #0b1a2d;
  color: #fff;
  border: none;
  font-weight: 800;
  box-shadow:
    0 4px 20px rgba(11, 26, 45, .30),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

.btn--primary:hover {
  background: #132d4f;
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(11, 26, 45, .40),
    inset 0 1px 0 rgba(255, 255, 255, .15),
    inset 0 0 20px rgba(57, 141, 221, 0.08);
}

.btn--primary:active {
  transform: scale(0.96) translateY(0);
  background: #091422;
  box-shadow:
    0 2px 10px rgba(11, 26, 45, .30),
    inset 0 4px 12px rgba(0, 0, 0, 0.3);
}

/*
 * Botones de Cristal Liquido (Liquid Glass Buttons)
 * Eliminamos el borde opaco. Añadimos refracción, reflejo y efecto Squish
 */
.btn--glass {
  padding: .875rem 2rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  color: var(--black);
  border: none;
  box-shadow:
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    0 4px 16px rgba(0, 0, 0, 0.1);
  text-shadow: none;
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.02) translateY(-2px);
  box-shadow:
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--glass:active {
  transform: scale(0.96) translateY(0);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    inset 0 4px 12px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn--white {
  padding: .875rem 2rem;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1)
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15)
}

.btn--white:active {
  transform: scale(0.96) translateY(0);
}

.btn--outline {
  padding: .875rem 2rem;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline:active {
  transform: scale(0.96) translateY(0);
}

.btn--ghost-light {
  padding: .875rem 2rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .3)
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5)
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem
}

.btn--full {
  width: 100%
}

.section-header {
  margin-bottom: 3.5rem
}

.section-header__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem
}

.section-number {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .04em
}

.section-tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: .08em
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -.03em
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--g500);
  max-width: 540px;
  margin-top: 1.25rem;
  line-height: 1.7
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h)
}



.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center
}

@media(min-width:1024px) {
  .hero__container {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 6rem var(--gutter)
  }
}

/* Hero content - start hidden for GSAP */
.hero__tag,
.hero__line,
.hero__subtitle,
.hero__actions {
  opacity: 0
}

.hero__title {
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  font-weight: 900;
  color: var(--black);
  line-height: .92;
  letter-spacing: -.045em;
  margin-bottom: 1.25rem
}

.hero__line {
  display: block;
  overflow: hidden
}

.hero__line--accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--g500);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2rem
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem
}

/* Hero visual - asymmetric, bleeds right */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end
}

@media(min-width:1024px) {
  .hero__visual {
    margin-right: -6rem
  }
}



.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, .1));
  opacity: 0;
  will-change: transform
}

/* Glass float cards */
.hero__glass-card {
  position: absolute;
  z-index: 3;
  opacity: 0
}

.hero__glass-card--1 {
  bottom: 12%;
  left: -8%
}

.hero__glass-card--2 {
  top: 8%;
  right: 2%
}

@media(max-width:767px) {
  .hero__glass-card--1 {
    bottom: 5%;
    left: 0
  }

  .hero__glass-card--2 {
    top: 0;
    right: 0
  }
}

.glass-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.125rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-radius: var(--r-md);
  border: none;
  /* Liquid Glass Rule 2: No solid borders */
  /* Apple Liquid Glass Rim Lighting */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.hero__glass-card:hover .glass-card {
  transform: scale(1.02) translateY(-2px);
  background: rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(255, 255, 255, 0.4),
    0 16px 40px rgba(0, 0, 0, 0.12);
}

.glass-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.5);
  /* Inner Glass */
  color: var(--primary);
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.05);
}

.glass-card__icon--coral {
  background: rgba(234, 99, 101, .1);
  color: var(--coral)
}

.glass-card__label {
  display: block;
  font-size: .6875rem;
  color: var(--g500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em
}

.glass-card__value {
  display: block;
  font-size: .8125rem;
  color: var(--black);
  font-weight: 700;
  letter-spacing: -.01em
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none
}

@media(min-width:1024px) {
  .hero__scroll {
    display: block
  }
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--g200);
  position: relative;
  overflow: hidden
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--primary);
  animation: scrollD 2s var(--ease2) infinite
}

@keyframes scrollD {
  0% {
    top: -40%
  }

  100% {
    top: 100%
  }
}

/* ===================== STATS ===================== */
.stats {
  position: relative;
  padding: 2.5rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(57, 141, 221, .06);
  border-bottom: 1px solid rgba(57, 141, 221, .06)
}

.stats__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center
}

@media(min-width:768px) {
  .stats__container {
    grid-template-columns: repeat(7, auto);
    align-items: center;
    justify-content: center;
    gap: 0
  }
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem
}

@media(min-width:768px) {
  .stats__item {
    flex-direction: row;
    gap: .375rem;
    padding: 0 2rem;
    flex-wrap: wrap;
    justify-content: center
  }
}

.stats__num-wrap {
  display: flex;
  align-items: baseline;
  gap: .125rem
}

.stats__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.04em;
  line-height: 1
}

.stats__plus,
.stats__suffix {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1
}

.stats__label {
  font-size: .8125rem;
  color: var(--g400);
  font-weight: 500;
  line-height: 1.3;
  width: 100%
}

@media(min-width:768px) {
  .stats__label {
    text-align: left
  }
}

.stats__divider {
  display: none
}

@media(min-width:768px) {
  .stats__divider {
    display: block;
    width: 1px;
    height: 48px;
    background: var(--g200)
  }
}

/* ===================== SERVICES ===================== */
.services {
  padding: 8rem 0
}

.services__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  overflow: visible
}

.svc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 7rem;
  align-items: center
}

.svc:last-child {
  margin-bottom: 0
}

@media(min-width:1024px) {
  .svc {
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem
  }
}

@media(min-width:1024px) {
  .svc--reverse {
    grid-template-columns: 1.3fr 1fr
  }

  .svc--reverse .svc__content {
    order: 2
  }

  .svc--reverse .svc__visual {
    order: 1
  }
}

.svc__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.svc__num {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(180deg, var(--g200), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.svc__tag {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  padding: .25rem .875rem;
  border: 1px solid rgba(57, 141, 221, .2);
  border-radius: var(--r-full)
}

.svc__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: 1rem
}

.svc__desc {
  font-size: 1rem;
  color: var(--g500);
  line-height: 1.7;
  margin-bottom: 1.25rem
}

.svc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .625rem
}

.svc__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--g700)
}

.svc__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0
}

/* Service visual - asymmetric, bleeds to edge */
.svc__visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center
}

.svc__visual--right {
  justify-content: flex-end
}

@media(min-width:1024px) {
  .svc__visual--right {
    margin-right: -4rem
  }
}

.svc__visual--left {
  justify-content: flex-start
}

@media(min-width:1024px) {
  .svc__visual--left {
    margin-left: -4rem
  }
}



.svc__img {
  position: relative;
  z-index: 1;
  max-width: 90%;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, .08));
  transition: transform var(--dur) var(--ease);
  will-change: transform
}

.svc__img--tall {
  max-height: 420px;
  width: auto;
}

@media(max-width:768px) {
  .svc__img--tall {
    max-height: 320px;
    max-width: 60%;
    margin: 0 auto;
  }
}

.svc:hover .svc__img {
  transform: scale(1.02) translateY(-4px)
}



/* ===================== CTA VIDEO ===================== */
.cta-video {
  position: relative;
  padding: 6rem 0;
  overflow: hidden
}

.cta-video__bg {
  position: absolute;
  inset: 0
}

.cta-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(57, 141, 221, .85) 0%, rgba(55, 118, 213, .75) 40%, rgba(57, 141, 221, .9) 100%);
  mix-blend-mode: normal
}

.cta-video__container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center
}

.cta-video__glass {
  max-width: 720px;
  text-align: center;
  padding: 4rem 3.5rem;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 8px 48px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .2)
}

.cta-video__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1rem
}

.cta-video__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto
}

/* ===================== METHODOLOGY ===================== */
.method {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: var(--white)
}

.method__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2
}

.method__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem
}

@media(min-width:768px) {
  .method__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
  }
}

.method__step-glass {
  padding: 2.5rem 2rem;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  height: 100%;
}

.method__step-glass:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(255, 255, 255, 0.4),
    0 16px 40px rgba(57, 141, 221, 0.1);
}

.method__step-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(180deg, rgba(57, 141, 221, .12), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 1rem;
  right: 1.5rem
}

.method__step-icon {
  width: 100px;
  height: 80px;
  margin-bottom: 1.25rem
}

.method__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .06))
}

.method__step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.02em;
  margin-bottom: .5rem
}

.method__step-desc {
  font-size: .9375rem;
  color: var(--g500);
  line-height: 1.65
}



/* ===================== INDUSTRIES ===================== */
.industries {
  padding: 8rem 0;
  position: relative;
  overflow: hidden
}

.industries__bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.industries__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px)
}

.industries__orb--1 {
  width: 450px;
  height: 450px;
  background: rgba(57, 141, 221, .07);
  top: -10%;
  right: -10%;
  animation: orbFloat 14s ease-in-out infinite
}

.industries__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(234, 99, 101, .04);
  bottom: -10%;
  left: -5%;
  animation: orbFloat 11s ease-in-out infinite reverse
}

.industries__container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

.industries__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem
}

@media(min-width:640px) {
  .industries__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .industries__grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.ind-card {
  position: relative
}

.ind-card__inner {
  padding: 2rem 1.75rem;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ind-card__inner:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(255, 255, 255, 0.4),
    0 16px 48px rgba(57, 141, 221, 0.1);
  border: none;
}

.ind-card__num {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(180deg, rgba(57, 141, 221, .08), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.ind-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(57, 141, 221, .08);
  color: var(--primary);
  margin-bottom: 1.25rem
}

.ind-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: .75rem
}

.ind-card__desc {
  font-size: .875rem;
  color: var(--g500);
  line-height: 1.65
}

/* ===================== INFRASTRUCTURE ===================== */
.infra {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden
}

.infra__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2
}

.infra__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem
}

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

.infra-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.infra-card:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(255, 255, 255, 0.4),
    0 16px 40px rgba(57, 141, 221, 0.1);
}

.infra-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--g50), var(--primary-ultra))
}

.infra-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--dur-s) var(--ease)
}

.infra-card:hover .infra-card__img img {
  transform: scale(1.06)
}

.infra-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .375rem .75rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-full);
  font-size: .6875rem;
  font-weight: 700;
  color: var(--g700);
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 1px solid var(--glass-border)
}

.infra-card__body {
  padding: 1.25rem 1.5rem
}

.infra-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.02em
}

.infra-card__sub {
  font-size: .8125rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: .25rem
}

.infra-card__desc {
  font-size: .9375rem;
  color: var(--g500);
  line-height: 1.65;
  margin-top: .75rem
}

.infra-card__address {
  font-size: .8125rem;
  color: var(--g400);
  line-height: 1.5;
  margin-top: .5rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}



/* ===================== CASES ===================== */
.cases {
  padding: 8rem 0
}

.cases__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

.cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem
}

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

.case-card__glass {
  padding: 2rem;
  border-radius: var(--r-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.case-card__glass:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(255, 255, 255, 0.4),
    0 16px 40px rgba(57, 141, 221, 0.1);
}

.case-card__tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  padding: .25rem .875rem;
  background: rgba(57, 141, 221, .08);
  border-radius: var(--r-full);
  margin-bottom: 1rem
}

.case-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.02em;
  margin-bottom: .5rem
}

.case-card__desc {
  font-size: .9375rem;
  color: var(--g500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem
}

.case-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(57, 141, 221, .08)
}

.case-card__val {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.03em;
  line-height: 1
}

.case-card__lbl {
  display: block;
  font-size: .75rem;
  color: var(--g400);
  font-weight: 500;
  margin-top: .25rem
}

/* ===================== CTA FINAL ===================== */
.cta-final {
  padding: 2rem 0 6rem
}

.cta-final__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem var(--gutter);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  text-align: center
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.cta-final__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px)
}

.cta-final__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, .08);
  top: -30%;
  right: -10%
}

.cta-final__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(234, 99, 101, .12);
  bottom: -20%;
  left: -5%
}

/* Iridescent shimmer */
.cta-final__iridescent {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .04) 30%, rgba(234, 99, 101, .05) 50%, rgba(57, 141, 221, .06) 70%, rgba(255, 255, 255, 0) 100%);
  animation: iriShift 8s ease-in-out infinite alternate
}

@keyframes iriShift {
  0% {
    opacity: .3;
    transform: translateX(-20%)
  }

  100% {
    opacity: .8;
    transform: translateX(20%)
  }
}

.cta-final__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto
}

.cta-final__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-top: 1rem
}

.cta-final__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 2rem
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  justify-content: center
}

/* ===================== CONTACT ===================== */
.contact {
  padding: 8rem 0;
  background: var(--white)
}

.contact__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem
}

@media(min-width:1024px) {
  .contact__container {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start
  }
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  border: 1px solid var(--glass-border)
}

.contact__detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(57, 141, 221, .08);
  color: var(--primary);
  flex-shrink: 0
}

.contact__detail-label {
  display: block;
  font-size: .6875rem;
  color: var(--g400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em
}

.contact__detail-value {
  display: block;
  font-size: .9375rem;
  color: var(--black);
  font-weight: 600
}

a.contact__detail-value:hover {
  color: var(--primary)
}

.contact__form {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2.5rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(57, 141, 221, .04)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem
}

@media(min-width:640px) {
  .form-row {
    grid-template-columns: 1fr 1fr
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .375rem;
  margin-bottom: 1rem
}

.form-row .form-group {
  margin-bottom: 0
}

.form-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--g700);
  letter-spacing: -.01em
}

.form-input {
  width: 100%;
  padding: .875rem 1rem;
  background: rgba(255, 255, 255, .7);
  border: 1.5px solid var(--g200);
  border-radius: var(--r-md);
  font-size: .9375rem;
  color: var(--black);
  transition: all var(--dur-f);
  outline: none;
  appearance: none;
  -webkit-appearance: none
}

.form-input::placeholder {
  color: var(--g300)
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(57, 141, 221, .1);
  background: #fff
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem
}

.form-textarea {
  resize: vertical;
  min-height: 120px
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 5rem 0 1.5rem;
  border-top: 1px solid var(--g100)
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--g100)
}

@media(min-width:768px) {
  .footer__top {
    grid-template-columns: 1.2fr 2fr
  }
}

.footer__logo {
  width: 140px
}

.footer__tagline {
  font-size: .9375rem;
  color: var(--g500);
  margin-top: 1rem;
  line-height: 1.6
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem
}

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

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.footer__col-title {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem
}

.footer__link {
  font-size: .875rem;
  color: var(--g500);
  transition: color var(--dur-f)
}

.footer__link:hover {
  color: var(--primary)
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem
}

.footer__copy {
  font-size: .8125rem;
  color: var(--g400)
}

.footer__social {
  display: flex;
  gap: .75rem
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--g50);
  color: var(--g500);
  transition: all var(--dur-f) var(--ease)
}

.footer__social-link:hover {
  background: var(--primary);
  color: #fff
}

/* ===================== VALUE PROPS ===================== */
.vprops {
  padding: 5rem 0 3rem
}

.vprops__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

.vprops__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem
}

@media(min-width:640px) {
  .vprops__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .vprops__grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.vprop__glass {
  padding: 1.75rem 1.5rem;
  border-radius: var(--r-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: none;
  /* Apple Liquid Glass Rim Light */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.vprop__glass:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(255, 255, 255, 0.4),
    0 16px 40px rgba(57, 141, 221, 0.08);
}

.vprop__3d-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 100px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.vprop__img-3d {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.vprop__body {
  flex: 1;
  margin-bottom: 1rem
}

.vprop__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: .375rem
}

.vprop__desc {
  font-size: .8125rem;
  color: var(--g500);
  line-height: 1.55
}

.vprop__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--dur-f) var(--ease)
}

.vprop__link:hover {
  gap: .625rem;
  color: var(--primary-dark)
}

/* ===================== CALC WIDGET TEASER ===================== */

.calc-teaser {
  padding: 6rem 0 5rem;
  background: var(--g50);
  transition: background 0.6s var(--ease);
}

.calc-teaser--pyme {
  background: #E8F2FC;
}

.calc-teaser__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- Liquid Glass Card — SVG Chromatic Aberration ---- */
.calc-teaser__card-wrap {
  max-width: 560px;
  margin: 2.5rem auto 2rem;
  position: relative;
  border-radius: var(--r-xl);
}

/* Refraction overlay — sits behind card content, catches SVG filter on hover */
.calc-teaser__glass-refraction {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  /* filter: url(#liquid-glass-refraction) saturate(1.8) blur(1px); REMOVED: Caused massive GPU lag */
  background: linear-gradient(135deg,
      rgba(0, 224, 255, 0.08),
      rgba(200, 80, 255, 0.06),
      rgba(255, 220, 100, 0.04));
  transition: opacity 0.5s cubic-bezier(.22, .61, .36, 1);
}

.calc-teaser__card-wrap:hover .calc-teaser__glass-refraction {
  opacity: 1;
}

.calc-teaser__card-wrap:active .calc-teaser__glass-refraction {
  opacity: 1;
}

/* Main glass card — volumetric rim lighting */
.calc-teaser__card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-xl);
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;

  /* No solid border — volume only via stacked inset shadows (Rim Lighting) */
  border: none;
  box-shadow:
    /* --- Rim light: top edge (primary light source) --- */
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.15),
    /* --- Rim light: left edge (secondary bounce) --- */
    inset 1px 0 1px rgba(255, 255, 255, 0.2),
    /* --- Inner glow: diffuse light trapped in glass --- */
    inset 0 0 10px rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05),
    /* --- Bottom edge: subtle shadow (glass sits on surface) --- */
    inset 0 -1px 1px rgba(0, 0, 0, 0.04),
    /* --- Outer depth shadow --- */
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);

  transform: scale(1);
  transition:
    transform 0.4s cubic-bezier(.22, .61, .36, 1),
    box-shadow 0.5s cubic-bezier(.22, .61, .36, 1);
}

/* Hover: glass expands like a water drop spreading */
.calc-teaser__card-wrap:hover .calc-teaser__card {
  transform: scale(1.02);
  box-shadow:
    /* Rim light intensifies */
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 2px 6px rgba(255, 255, 255, 0.25),
    inset 1px 0 1px rgba(255, 255, 255, 0.3),
    inset 0 0 14px rgba(255, 255, 255, 0.15),
    inset 0 0 28px rgba(255, 255, 255, 0.08),
    inset 0 -1px 2px rgba(0, 0, 0, 0.03),
    /* Outer chromatic halo (CSS fallback for non-SVG) */
    0 0 24px 3px rgba(0, 224, 255, 0.10),
    0 0 36px 6px rgba(200, 80, 255, 0.06),
    0 0 48px 8px rgba(255, 220, 100, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.06);
}

/* Active: glass "presses" — surface tension compresses */
.calc-teaser__card-wrap:active .calc-teaser__card {
  transform: scale(0.99);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 1px 0 1px rgba(255, 255, 255, 0.2),
    inset 0 0 8px rgba(255, 255, 255, 0.12),
    inset 0 -2px 4px rgba(0, 0, 0, 0.05),
    /* Chromatic split tighter and stronger */
    0 0 14px 4px rgba(0, 224, 255, 0.16),
    0 0 22px 6px rgba(200, 80, 255, 0.10),
    0 0 30px 8px rgba(255, 220, 100, 0.07),
    0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Mode tabs — Glass Pill Track + Floating Knob */
.calc-teaser__mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  padding: 3px;
  /* Track = glass groove carved into the surface */
  background: rgba(0, 0, 0, 0.03);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.06),
    inset 0 1px 2px rgba(0, 0, 0, 0.04),
    inset 0 0 8px rgba(0, 0, 0, 0.02),
    0 1px 0 rgba(255, 255, 255, 0.5);
}

.calc-teaser__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border: none;
  border-radius: 11px;
  background: transparent;
  color: var(--g500);
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  position: relative;
  /* Spring-like fluid timing — gummy, organic feel */
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Active knob = floating bubble/droplet */
.calc-teaser__tab.is-active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  /* Rim lighting on the knob — light hits the top of the bubble */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    inset 0 -1px 1px rgba(0, 0, 0, 0.02),
    /* Drop shadow — bubble floats above the track */
    0 2px 6px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Pressing the knob squishes the droplet */
.calc-teaser__tab.is-active:active {
  transform: scale(0.95);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Hover on inactive: liquid gently illuminates from within */
.calc-teaser__tab:hover:not(.is-active) {
  color: var(--g700);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2);
}

/* Pressing inactive tab */
.calc-teaser__tab:active:not(.is-active) {
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.5);
}

/* Mode info */
.calc-teaser__mode-info {
  font-size: .75rem;
  font-weight: 500;
  color: var(--g500);
  text-align: center;
  padding: .5rem .75rem;
  background: rgba(57, 141, 221, .06);
  border-radius: var(--r-sm);
  border: 1px solid rgba(57, 141, 221, .1);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Selects — glass micro-vessels */
.calc-teaser__selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.calc-teaser__select-group {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.calc-teaser__label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--g600);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.calc-teaser__select {
  width: 100%;
  padding: .75rem 1rem;
  border: none;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.55);
  font-size: .9375rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--black);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  /* Same spring curve as everything else */
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  /* Internal rim lighting */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 0 6px rgba(255, 255, 255, 0.1),
    inset 0 -1px 1px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Hover: liquid illuminates from within */
.calc-teaser__select:hover {
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.15),
    inset 0 -1px 1px rgba(0, 0, 0, 0.02),
    0 2px 6px rgba(0, 0, 0, 0.05);
}

.calc-teaser__select:focus {
  background: rgba(255, 255, 255, 0.75);
  box-shadow:
    0 0 0 3px rgba(57, 141, 221, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 0 8px rgba(57, 141, 221, 0.06);
}

/* Delivery */
.calc-teaser__delivery {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--g600);
  padding: .5rem .75rem;
  background: rgba(16, 185, 129, .05);
  border-radius: var(--r-sm);
  border: 1px solid rgba(16, 185, 129, .08);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.calc-teaser__delivery strong {
  color: var(--black);
}

/* CTA button — solid dark, high contrast, liquid hover glow */
.calc-teaser__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.1rem 2rem;
  border-radius: var(--r-md);
  background: #0b1a2d;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow:
    0 4px 20px rgba(11, 26, 45, .30),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* Hover: liquid internal illumination — inset glow brightens */
.calc-teaser__cta:hover {
  background: #132d4f;
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(11, 26, 45, .40),
    inset 0 1px 0 rgba(255, 255, 255, .15),
    inset 0 0 20px rgba(57, 141, 221, 0.08);
}

/* Active: liquid compresses */
.calc-teaser__cta:active {
  transform: translateY(0) scale(0.98);
  background: #091422;
  box-shadow:
    0 2px 10px rgba(11, 26, 45, .30),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.calc-teaser__cta svg {
  stroke: #ffffff;
  flex-shrink: 0;
}

/* Disclaimer */
.calc-teaser__disclaimer {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .75rem;
  color: var(--g400);
  line-height: 1.5;
}

.calc-teaser__disclaimer svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.calc-teaser__disclaimer a {
  color: var(--primary);
  font-weight: 600;
}

/* Stack selects on mobile */
@media (max-width: 479px) {
  .calc-teaser__selects {
    grid-template-columns: 1fr;
  }

  .calc-teaser__card {
    padding: 1.5rem 1.25rem;
  }

  .calc-teaser__tab {
    font-size: .8125rem;
    padding: .5rem .75rem;
  }

  .calc-teaser__tab svg {
    display: none;
  }
}

/* ===================== CALCULATOR V2 & AURA EFFECT ===================== */
.calc {
  --c-bg: var(--g50);
  --c-acc: var(--white);
  --c-btn: var(--primary);
  --c-btn-hover: var(--primary-dark);
  background: var(--c-bg);
  transition: background 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.calc--pyme {
  /* Corporate Green/Graphite Aura Theme */
  --c-bg: #E8F5E9;
  --c-acc: #F1F8F1;
  --c-btn: #2E7D32;
  --c-btn-hover: #1B5E20;
  background: var(--c-bg);
}

.calc__header-area {
  padding: 6rem 0 2rem;
  background: var(--c-acc);
  transition: background 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.calc__header-container,
.calc__body-container,
.calc__disclaimer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

/* Liquid Glass Mode Tabs */
.calc__mode-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 2rem auto 0;
  max-width: 400px;

  /* Grooved pill track */
  padding: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(0, 0, 0, 0.08),
    inset 0 0 10px rgba(0, 0, 0, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.8);
}

.calc--pyme .calc__mode-tabs {
  background: rgba(0, 0, 0, 0.04);
}

.calc__mode-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--g500);
  border-radius: 100px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  letter-spacing: -.01em;
  position: relative;
  z-index: 2;
}

.calc__mode-tab:hover {
  color: var(--black);
}

.calc__mode-tab.is-active {
  color: var(--black);
}

.calc__mode-tab.is-active svg {
  stroke: var(--primary);
}

/* Sliding Knob for Mode Tabs */
.calc__mode-tabs::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: calc(50% - 6px);
  left: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.9);
  /* Volume drop shadow & rim lighting */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.05);
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  pointer-events: none;
}

/* In the HTML, the active state is handled via JS toggling the 'is-active' class on tabs.
   To make the knob slide based on that, the container needs a data attribute reflecting mode.
   Since the existing JS handles class toggling, we'll use a hack if we can't easily sync a parent attribute:
   actually, we've updated the selector in JS earlier to handle switching styles based on body class (.calc--pyme). */
.calc--pyme .calc__mode-tabs::before {
  left: calc(50%);
}

.calc__mode-tabs:active::before {
  transform: scaleX(0.92);
}

/* Body 2-col */
.calc__body {
  padding: 2.5rem 0
}

.calc__body-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem
}

@media(min-width:1024px) {
  .calc__body-container {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start
  }
}

/* Form Glass & Cart Glass Panels (Liquid Glass Standard) */
.calc__form-glass,
.calc__cart-glass {
  position: relative;
  z-index: 1;
  padding: 2.25rem 2rem;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  /* Rim Lighting */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 1px 0 1px rgba(255, 255, 255, 0.4),
    inset 0 0 16px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.calc--pyme .calc__form-glass,
.calc--pyme .calc__cart-glass {
  background: rgba(244, 249, 254, 0.7);
}

.calc__form-glass-wrap,
.calc__cart-glass-wrap {
  position: relative;
  border-radius: var(--r-xl);
}

.calc__form-glass-refraction,
.calc__cart-glass-refraction {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  /* filter: url(#liquid-glass-refraction) saturate(1.4) blur(0.8px); REMOVED: Caused massive GPU lag */
  background: linear-gradient(135deg,
      rgba(0, 224, 255, 0.04),
      rgba(200, 80, 255, 0.03),
      rgba(255, 220, 100, 0.02));
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.calc__form-glass-wrap:hover .calc__form-glass-refraction,
.calc__cart-glass-wrap:hover .calc__cart-glass-refraction {
  opacity: 1;
}

.calc__form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

/* Mode Info Badge */
.calc__mode-info {
  margin-bottom: 1.25rem
}

.calc__badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .875rem;
  border-radius: var(--r-md);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.4
}

.calc__badge--blue {
  background: rgba(57, 141, 221, .06);
  color: var(--primary);
  border: 1px solid rgba(57, 141, 221, .12)
}

.calc__badge--amber {
  background: rgba(245, 158, 11, .06);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, .15)
}

/* Form rows */
.calc-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-bottom: .75rem
}

@media(min-width:480px) {
  .calc-form__row {
    grid-template-columns: 1fr 1fr
  }
}

.calc-form__group {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: .75rem
}

.calc-form__row .calc-form__group {
  margin-bottom: 0
}

/* Liquid Glass Inputs & Selects */
.calc-input-glass {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-input-glass__field,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: var(--r-md);
  padding: .75rem 1rem;
  font-size: .9375rem;
  font-family: inherit;
  font-weight: 600;
  color: var(--black);
  outline: none;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 0 6px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02);
}

.calc-input-glass__field:hover,
.form-select:hover {
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    inset 0 0 12px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

.calc-input-glass__field:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.8);
  /* Liquid Inner Glow instead of solid border */
  box-shadow:
    0 0 0 3px rgba(57, 141, 221, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.9),
    inset 0 0 8px rgba(57, 141, 221, 0.15);
}

.calc-input-glass__prefix {
  position: absolute;
  left: 1rem;
  color: var(--g400);
  font-weight: 600;
  pointer-events: none;
}

.calc-input-glass__field--pl {
  padding-left: 2rem;
}

.calc-input-glass__suffix {
  position: absolute;
  right: 1rem;
  color: var(--g400);
  font-size: .875rem;
  font-weight: 600;
  pointer-events: none;
}

.calc-input-glass__field--pr {
  padding-right: 2.5rem;
}

/* Stepper Control (Liquid Glass Track & Bubble) */
.calc-stepper {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  /* Track groove */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: var(--r-md);
  height: 46px;
  overflow: visible;
  /* Let buttons float slightly */
  box-shadow:
    inset 0 2px 5px rgba(0, 0, 0, 0.1),
    inset 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0 0 8px rgba(0, 0, 0, 0.02),
    0 1px 0 rgba(255, 255, 255, 0.8);
  /* External bottom highlight */
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  padding: 4px;
  /* Space for bubbles */
}

.calc-stepper:focus-within {
  box-shadow:
    inset 0 2px 5px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 3px rgba(57, 141, 221, 0.2);
}

.calc-stepper__btn {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: var(--r-sm);
  color: var(--black);
  width: 38px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* Floating Bubble Physics */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.calc-stepper__btn:hover {
  background: #FFF;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 1),
    inset 0 0 8px rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05),
    0 4px 8px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.1);
  color: var(--primary);
}

.calc-stepper__btn:active {
  transform: scale(0.92);
  /* Liquid squish */
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    inset 0 2px 4px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.05);
}

.calc-stepper__input {
  flex: 1;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  text-align: center;
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
  outline: none;
  -moz-appearance: textfield;
}

.calc-stepper__input::-webkit-outer-spin-button,
.calc-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Tooltips */
.calc-tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--g200);
  color: var(--g600);
  font-size: 10px;
  font-weight: 700;
  cursor: help;
  margin-left: 6px;
  position: relative;
  vertical-align: middle;
  transition: all 0.2s;
}

.calc-tooltip-icon:hover,
.calc-tooltip-icon.is-active {
  background: var(--primary);
  color: var(--white);
}

.calc-tooltip-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: max-content;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 0 8px rgba(255, 255, 255, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: var(--r-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  pointer-events: none;
  z-index: 100;
  white-space: normal;
  text-align: center;
}

.calc-tooltip-icon::before {
  content: '';
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  border: 6px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  margin-bottom: -11px;
}

.calc-tooltip-icon:hover::after,
.calc-tooltip-icon.is-active::after,
.calc-tooltip-icon:hover::before,
.calc-tooltip-icon.is-active::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.calc-form__submit {
  margin-top: .5rem
}

.form-label--sm {
  font-size: .75rem
}

/* Autocomplete Dropdown & Chip */
.calc-ac {
  position: relative;
  margin-bottom: 1.5rem
}

.calc-ac__input {
  transition: all 0.3s var(--ease);
}

.calc-ac__input.is-hidden-anim {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  position: absolute;
  z-index: -1;
}

.calc-ac__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r-md);
  box-shadow: 0 12px 32px rgba(13, 20, 28, .1);
  z-index: 20;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--dur) var(--ease)
}

.calc-ac__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.calc-ac__item {
  padding: .75rem 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: .125rem;
  border-bottom: 1px solid var(--g100);
  transition: background var(--dur-f) ease
}

.calc-ac__item:last-child {
  border-bottom: none
}

.calc-ac__item:hover,
.calc-ac__item.is-focused {
  background: var(--g50)
}

.calc-ac__item--custom {
  background: rgba(57, 141, 221, .04);
  border-top: 2px solid var(--g100)
}

.calc-ac__item-name {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--black)
}

.calc-ac__item-name mark {
  background: rgba(57, 141, 221, .15);
  color: var(--primary);
  font-weight: 800;
  border-radius: 2px;
  padding: 0 1px
}

.calc-ac__item-cat {
  font-size: .6875rem;
  color: var(--g400);
  font-weight: 500;
  padding: .125rem .5rem;
  background: var(--g50);
  border-radius: var(--r-full)
}

.calc-ac__empty {
  padding: .875rem 1rem;
  font-size: .8125rem;
  color: var(--g400);
  text-align: center
}

/* Selected product chip */
.calc-ac__selected {
  margin-top: .375rem;
  min-height: 0
}

.calc-ac__chip-wrap {
  display: flex;
  flex-direction: column;
  gap: .375rem;
  padding: .625rem .875rem;
  background: rgba(57, 141, 221, .05);
  border: 1px solid rgba(57, 141, 221, .12);
  border-radius: var(--r-md)
}

.calc-ac__chip {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--primary)
}

.calc-ac__chip-name {
  flex: 1
}

.calc-ac__chip-x {
  cursor: pointer;
  opacity: .6;
  transition: opacity var(--dur-f);
  font-size: 1.125rem;
  line-height: 1;
  color: var(--g400)
}

.calc-ac__chip-x:hover {
  opacity: 1;
  color: var(--coral)
}

.calc-ac__cat-row {
  display: flex;
  align-items: center;
  gap: .5rem
}

.calc-ac__cat-label {
  font-size: .6875rem;
  color: var(--g400);
  font-weight: 500;
  white-space: nowrap
}

.calc-ac__cat-select {
  font-size: .6875rem;
  font-weight: 600;
  color: var(--g700);
  padding: .125rem .375rem;
  border: 1px solid var(--g200);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  outline: none;
  transition: border-color var(--dur-f)
}

.calc-ac__cat-select:hover,
.calc-ac__cat-select:focus {
  border-color: var(--primary)
}

.calc-ac__item--custom {
  border-top: 1px solid var(--g100);
  background: rgba(57, 141, 221, .03)
}

.calc-ac__item--custom .calc-ac__item-name {
  color: var(--primary);
  font-style: italic
}

.calc-ac__item--custom .calc-ac__item-cat {
  color: var(--g400);
  font-size: .625rem
}

/* Delivery time */
.calc__delivery {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1rem;
  background: rgba(16, 185, 129, .06);
  border: 1px solid rgba(16, 185, 129, .15);
  border-radius: var(--r-md);
  margin-bottom: .75rem;
  font-size: .8125rem;
  color: #059669
}

.calc__delivery svg {
  flex-shrink: 0
}

/* Cart Glass */
.calc__cart-glass {
  padding: 2rem;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--g200);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .04)
}

.calc__cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--g100)
}

.calc__cart-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.02em
}

.calc__cart-count {
  font-size: .75rem;
  font-weight: 700;
  color: var(--g400);
  padding: .25rem .625rem;
  background: var(--g50);
  border-radius: var(--r-full)
}

/* Cart empty — steps */
.calc__cart-empty {
  padding: 1.25rem 0;
  color: var(--g300)
}

.calc__cart-steps {
  display: flex;
  flex-direction: column;
  gap: .625rem
}

.calc__cart-step {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .8125rem;
  color: var(--g400);
  font-weight: 500
}

.calc__cart-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(57, 141, 221, .08);
  color: var(--primary);
  font-size: .6875rem;
  font-weight: 800;
  flex-shrink: 0
}

/* Cart items */
.calc__cart-list {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.calc__grand-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.02em
}

.calc__grand-total span:first-child {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .8);
}

.calc__grand-total span:last-child {
  font-size: 1.75rem;
}

.calc__cart-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem;
  background: var(--g50);
  border-radius: var(--r-md);
  border: 1px solid var(--g100);
  animation: fadeSlideUp .3s var(--ease)
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  20%,
  60% {
    transform: translateX(-6px)
  }

  40%,
  80% {
    transform: translateX(6px)
  }
}

.shake {
  animation: shake .45s ease
}

.calc__cart-item-info {
  flex: 1;
  min-width: 0
}

.calc__cart-item-name {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.calc__cart-item-meta {
  font-size: .6875rem;
  color: var(--g400);
  margin-top: .125rem
}

.calc__cart-item-meta span {
  margin-right: .5rem
}

.calc__cart-item-cat {
  display: inline-block;
  font-size: .5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  padding: .0625rem .375rem;
  background: rgba(57, 141, 221, .08);
  border-radius: var(--r-full)
}

.calc__cart-item-costs {
  text-align: right;
  flex-shrink: 0
}

.calc__cart-item-flete {
  font-size: .75rem;
  font-weight: 700;
  color: var(--g700);
  font-variant-numeric: tabular-nums
}

.calc__cart-item-tax {
  font-size: .6875rem;
  color: var(--g500)
}

.calc-stepper--sm {
  height: 32px;
  width: 80px;
  border-radius: var(--r-sm);
  margin: 0 10px;
}

.calc-stepper--sm .calc-stepper__btn {
  width: 24px;
}

.calc-stepper--sm .calc-stepper__input-val {
  flex: 1;
  text-align: center;
  font-size: .875rem;
  font-weight: 700;
  color: var(--black);
}

.calc__cart-item-del {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g50);
  border: none;
  border-radius: var(--r-sm);
  color: var(--g400);
  cursor: pointer;
  margin-left: .75rem;
  flex-shrink: 0;
  transition: all var(--dur-f)
}

.calc__cart-item-del:hover {
  background: rgba(239, 68, 68, .1);
  color: #EF4444;
}

/* Limit bar */
.calc__limit-bar {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--g100)
}

.calc__limit-info {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--g500);
  margin-bottom: .375rem
}

.calc__limit-track {
  height: 6px;
  background: var(--g100);
  border-radius: var(--r-full);
  overflow: hidden
}

.calc__limit-fill {
  height: 100%;
  background: var(--primary);
  border-radius: var(--r-full);
  transition: width .4s var(--ease);
  width: 0
}

.calc__limit-fill.is-warning {
  background: #F59E0B
}

.calc__limit-fill.is-over {
  background: var(--coral)
}

/* Totals */
.calc__totals {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--g200)
}

.calc__totals-row {
  display: flex;
  justify-content: space-between;
  padding: .375rem 0;
  font-size: .8125rem;
  color: var(--g500);
  font-variant-numeric: tabular-nums
}

.calc__totals-row span:last-child {
  font-weight: 700;
  color: var(--g700)
}

.calc__totals-divider {
  height: 1px;
  background: var(--g200);
  margin: .5rem 0
}

.calc__totals-row--grand {
  padding: .75rem 0
}

.calc__totals-row--grand span:first-child {
  font-size: .9375rem;
  font-weight: 800;
  color: var(--black)
}

.calc__totals-row--grand span:last-child {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.02em
}

.calc__totals-note {
  font-size: .6875rem;
  color: var(--g400);
  margin-top: .75rem;
  line-height: 1.5;
  font-style: italic
}

/* Cart CTA */
.calc__cart-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.btn--ghost-sm {
  padding: .5rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--g400);
  border: 1px solid var(--g200);
  border-radius: var(--r-full);
  transition: all var(--dur-f)
}

.btn--ghost-sm:hover {
  color: var(--coral);
  border-color: rgba(234, 99, 101, .3)
}

/* Disclaimer */
.calc__disclaimer-wrap {
  padding: 0 0 4rem;
  background: var(--g50)
}

.calc__disclaimer {
  display: flex;
  gap: .625rem;
  padding: 1rem 1.25rem;
  background: rgba(57, 141, 221, .04);
  border-radius: var(--r-md);
  border: 1px solid rgba(57, 141, 221, .1)
}

.calc__disclaimer svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: .125rem
}

.calc__disclaimer p {
  font-size: .8125rem;
  color: var(--g500);
  line-height: 1.6
}

.calc__disclaimer strong {
  color: var(--g700);
  font-weight: 700
}

.calc__disclaimer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px
}

/* ===================== STORES ===================== */
.stores {
  padding: 6rem 0
}

.stores__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

.section-header--center {
  text-align: center
}

.section-header__top--center {
  justify-content: center
}

.section-title--center {
  text-align: center
}

.section-desc--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto
}

.stores__tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap
}

.stores__tab {
  padding: .5rem 1.5rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--g500);
  border-radius: var(--r-full);
  border: 1.5px solid var(--g200);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-f) var(--ease);
  letter-spacing: -.01em
}

.stores__tab:hover {
  border-color: var(--primary);
  color: var(--primary)
}

.stores__tab.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(57, 141, 221, .25)
}

.stores__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem
}

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

@media(min-width:1024px) {
  .stores__grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

@media(min-width:1280px) {
  .stores__grid {
    grid-template-columns: repeat(6, 1fr)
  }
}

.store-card {
  display: block;
  text-decoration: none;
  transition: opacity var(--dur-f) var(--ease)
}

.store-card.is-hidden {
  display: none
}

.store-card__inner {
  padding: 1.5rem 1.25rem;
  border-radius: var(--r-lg);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 2px 12px rgba(57, 141, 221, .04), inset 0 1px 0 rgba(255, 255, 255, .5);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.store-card__inner:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -1px 2px rgba(255, 255, 255, 0.4),
    0 16px 48px rgba(57, 141, 221, 0.1);
  border: none;
}

.store-card__logo {
  margin-bottom: .75rem;
  padding: 1rem .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1
}

.store-card__logo img {
  height: 54px;
  width: auto;
  max-width: 100%;
  object-fit: contain
}

.store-card__emoji {
  font-size: 2.25rem;
  line-height: 1
}

.store-card__name {
  font-size: .9375rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.01em;
  margin-bottom: .25rem;
  display: none
}

.store-card__region {
  display: inline-block;
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  padding: .125rem .5rem;
  background: rgba(57, 141, 221, .08);
  border-radius: var(--r-full);
  margin-bottom: .625rem
}

.store-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  justify-content: center
}

.store-card__tags span {
  font-size: .625rem;
  font-weight: 600;
  color: var(--g400);
  padding: .125rem .5rem;
  background: var(--g50);
  border-radius: var(--r-full)
}

.stores__cta {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem
}

.stores__cta-text {
  font-size: .9375rem;
  color: var(--g500)
}

/* ===================== ANIMATIONS (initial states) ===================== */
/* Non-hero reveals */
.vprops [data-anim="reveal"],
.calc [data-anim="reveal"],
.stores [data-anim="reveal"],
.services [data-anim="reveal"],
.cta-video__container[data-anim="reveal"],
.method [data-anim="reveal"],
.industries [data-anim="reveal"],
.infra [data-anim="reveal"],
.cases [data-anim="reveal"],
.cta-final__container[data-anim="reveal"],
.contact [data-anim="reveal"] {
  opacity: 0;
  transform: translateY(40px)
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:767px) {
  :root {
    --gutter: 1.25rem
  }

  .hero__title {
    font-size: clamp(2.25rem, 10vw, 3.5rem)
  }

  .svc__num {
    font-size: 3rem
  }

  .svc {
    margin-bottom: 4rem
  }

  .hero__container {
    padding-top: 2rem
  }

  .services,
  .method,
  .industries,
  .infra,
  .cases,
  .contact,
  .calc,
  .stores {
    padding: 5rem 0
  }

  .vprops {
    padding: 3rem 0 1rem
  }

  .hero__actions {
    flex-direction: column
  }

  .hero__actions .btn {
    width: 100%
  }

  .cta-final__actions {
    flex-direction: column
  }

  .cta-final__actions .btn {
    width: 100%
  }

  .cta-video__glass {
    padding: 2.5rem 1.5rem
  }

  .calc__form-glass {
    padding: 1.5rem
  }

  .calc-form__dim-grid {
    grid-template-columns: 1fr 1fr 1fr
  }

  .stores__grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* 
========================================================
APPLE LIQUID GLASS: SEGMENTED CONTROL (Toggles)
========================================================
*/
.lg-segment-control {
  position: relative;
  display: inline-flex;
  padding: 0.5rem;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 2px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

.lg-segment-btn {
  position: relative;
  z-index: 2;
  padding: 0.75rem 2rem;
  border: none;
  background: transparent;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  font-size: 0.9375rem;
}

.lg-segment-btn.is-active {
  color: var(--primary-dark);
}

.lg-segment-droplet {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  width: calc(50% - 0.5rem);
  left: 0.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 1),
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 1px 2px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), width 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  pointer-events: none;
}

.lg-segment-control:active .lg-segment-droplet {
  transform: scaleX(0.9) scaleY(0.95);
  background: rgba(255, 255, 255, 0.75);
}

/* 
========================================================
STATE-LOCKING MODAL (Glassmorphism)
========================================================
*/
.calc-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.calc-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.calc-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.calc-modal__content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 24px;
  max-width: 400px;
  text-align: center;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 1);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calc-modal.is-visible .calc-modal__content {
  transform: translateY(0) scale(1);
}

.calc-modal__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.calc-modal__text {
  font-size: 0.9375rem;
  color: var(--g500);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.calc-modal__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.calc-modal__actions .btn {
  padding: 0.75rem 1.5rem;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus indicators */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: .75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .875rem;
}

.skip-link:focus {
  top: 1rem;
}

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