/* ═══════════════════════════════════════════════════
   KENCE — premium build
   ═══════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --ink:          #050B17;
  --ink-2:        #0B1322;
  --navy:         #0A2540;
  --navy-deep:    #061629;
  --blue:         #1E73D2;
  --blue-soft:    #4A93E0;
  --blue-tint:    #EAF2FB;
  --blue-tint-2:  #F5F9FE;
  --white:        #FFFFFF;
  --text:         #0F172A;
  --text-2:       #475569;
  --muted:        #64748B;
  --border:       #E5EBF2;
  --border-dark:  rgba(255,255,255,0.08);

  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Scale */
  --fs-display: clamp(2.75rem, 6.5vw + 0.5rem, 6rem);
  --fs-h2:      clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
  --fs-h3:      clamp(1.15rem, 1vw + 0.7rem, 1.4rem);
  --fs-body:    1rem;
  --fs-sm:      0.875rem;
  --fs-xs:      0.78rem;

  /* Spacing */
  --section-py: clamp(5rem, 9vw, 8.5rem);

  /* Motion */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back:  cubic-bezier(0.34, 1.4, 0.64, 1);

  /* Radius */
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-sm: 10px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(10,37,64,0.06);
  --shadow:    0 10px 40px -10px rgba(10,37,64,0.12);
  --shadow-lg: 0 24px 60px -20px rgba(10,37,64,0.25);
  --shadow-blue: 0 14px 40px -10px rgba(30,115,210,0.35);

  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease-soft); }
a:hover { color: var(--navy); }
ul { list-style: none; }
button { font-family: inherit; }

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

/* Selection */
::selection { background: var(--blue); color: var(--white); }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 820px; }
.section { padding: var(--section-py) 0; position: relative; }

/* Scroll progress removed */

/* Section heads */
.section__head { margin-bottom: 4rem; max-width: 800px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.section__eyebrow--light { color: rgba(255,255,255,0.7); }
.section__eyebrow-dot {
  width: 16px;
  height: 1px;
  background: var(--blue);
  border-radius: 0;
}
.section__eyebrow--light .section__eyebrow-dot {
  background: var(--blue-soft);
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section__title em {
  font-style: normal;
}
.section__title--light { color: var(--white); }
.section__title--light em { color: var(--white); }
.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}
.section__head--center .section__sub { margin: 1rem auto 0; }
.section__sub--light { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease-out), background .25s, color .25s, border-color .25s, box-shadow .35s;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
}
.btn svg { transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn--solid {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--solid:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--blue-tint);
  color: var(--ink);
  border-color: var(--blue-tint);
  transform: translateY(-2px);
}
.btn--lg { padding: 1.15rem 1.85rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   NAV — Option B (traditional full-width + subtle premium)
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 0;
  transition:
    background .35s ease,
    backdrop-filter .35s ease,
    -webkit-backdrop-filter .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}
.nav__inner {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.nav--scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 4px 14px -8px rgba(10, 37, 64, 0.10);
  border-bottom-color: rgba(10, 37, 64, 0.08);
}
.nav__logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.nav__logo-img {
  height: 108px;
  width: auto;
  display: block;
  margin: -14px 0;
  transition: opacity .3s ease;
}
/* Hero (transparent) state: show the WHITE logo */
.nav__logo-img--dark { position: absolute; inset: auto; opacity: 0; pointer-events: none; }
.nav__logo-img--light { opacity: 1; }
/* Scrolled state: swap to the COLOR logo */
.nav--scrolled .nav__logo-img--light { opacity: 0; position: absolute; inset: auto; pointer-events: none; }
.nav--scrolled .nav__logo-img--dark { opacity: 1; position: static; }

.nav__menu { display: flex; align-items: center; flex: 1; justify-content: center; }
.nav__list { display: flex; align-items: center; gap: 0.25rem; position: relative; }
.nav__link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFFFFF;
  border-radius: 0;
  background: none;
  transition: color .3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.nav__link span {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.nav__link::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.1rem;
  height: 2px;
  background: #FFFFFF;
  border-radius: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(0.65, 0, 0.35, 1), background .3s ease;
  opacity: 1;
  inset: auto 0.9rem 0.1rem 0.9rem;
}
.nav__link:hover { color: rgba(255, 255, 255, 0.85); }
.nav__link:hover::before { transform: scaleX(1); }
.nav__link.active { color: #FFFFFF; }
.nav__link.active::before { transform: scaleX(1); }

/* Scrolled state — dark ink links, blue underline */
.nav--scrolled .nav__link { color: var(--ink); text-shadow: none; }
.nav--scrolled .nav__link:hover { color: var(--blue); }
.nav--scrolled .nav__link.active { color: var(--blue); }
.nav--scrolled .nav__link::before { background: var(--blue); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.4rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: color .3s ease;
}
.nav__phone svg {
  width: 15px;
  height: 15px;
  color: #FFFFFF;
  transition: transform .25s var(--ease-out), color .3s ease;
}
.nav__phone:hover { color: rgba(255, 255, 255, 0.85); }
.nav__phone:hover svg { transform: rotate(-8deg); }
.nav__phone::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.30);
  margin-left: 0.65rem;
  transition: background .3s ease;
}
/* Scrolled — phone in dark ink, hairline dims */
.nav--scrolled .nav__phone { color: var(--ink); text-shadow: none; }
.nav--scrolled .nav__phone svg { color: var(--blue); }
.nav--scrolled .nav__phone:hover { color: var(--blue); }
.nav--scrolled .nav__phone::after { background: rgba(10, 37, 64, 0.12); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  background: #FFFFFF;
  padding: 0.7rem 1.35rem;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease,
    transform .25s var(--ease-out),
    box-shadow .3s ease;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.18);
}
.nav__cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(10, 37, 64, 0.35);
}
.nav__cta svg { transition: transform .3s var(--ease-out); }
.nav__cta:hover svg { transform: translateX(2px); }

/* Scrolled — CTA becomes solid blue */
.nav--scrolled .nav__cta {
  background: var(--blue);
  border-color: var(--blue);
  color: #FFFFFF;
  box-shadow: 0 2px 6px -2px rgba(30, 115, 210, 0.30);
}
.nav--scrolled .nav__cta:hover {
  background: #1857A8;
  border-color: #1857A8;
  box-shadow: 0 8px 20px -6px rgba(30, 115, 210, 0.45);
}

/* Hamburger */
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-left: 0.25rem;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav__inner { padding: 0 1.5rem; }
  .nav__phone::after { display: none; }
}
/* ═══ Mobile nav — clean editorial overlay ═══ */
.nav__menu-inner { display: contents; }
.nav__menu-eyebrow { display: none !important; }
.nav__menu-foot { display: none; }
.nav__link-num, .nav__link-arrow { display: none !important; }

@media (max-width: 980px) {
  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    flex: none;
    justify-content: flex-start;
    background:
      radial-gradient(ellipse 900px 500px at 100% 0%, rgba(59, 130, 246, 0.14), transparent 62%),
      linear-gradient(180deg, #0A2540 0%, #071e37 100%);
    color: #FFFFFF;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      transform .32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity .28s ease;
    z-index: 999;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0;
    visibility: visible;
  }
  .nav__menu.open {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
  .nav__menu-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: calc(var(--nav-h) + 1.75rem) 1.75rem 2rem;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__list li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }

  .nav__link {
    display: block;
    padding: 1.15rem 0.35rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
    letter-spacing: -0.01em;
    background: transparent;
    transition: color 0.2s ease, padding-left 0.28s ease;
  }
  .nav__link::before { display: none; }
  .nav__link-num,
  .nav__link-arrow { display: none !important; }
  .nav__link-text {
    display: inline-block;
    text-shadow: none;
  }
  .nav__link:hover, .nav__link:focus-visible {
    color: #FFFFFF;
    padding-left: 0.75rem;
  }
  .nav__link.active { color: #93c5fd; }

  /* Content fades in as the overlay drops down */
  .nav__menu .nav__link,
  .nav__menu .nav__menu-foot > * {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s ease, transform .4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav__menu.open .nav__link,
  .nav__menu.open .nav__menu-foot > * {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .12s;
  }

  /* Footer contact block */
  .nav__menu-foot {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
  }
  .nav__menu-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .nav__menu-contact svg { color: rgba(147, 197, 253, 0.9); flex-shrink: 0; }
  .nav__menu-contact:hover { color: #FFFFFF; }
  .nav__menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.9rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #4d8dff 0%, #2563eb 100%);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.005em;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 12px 32px -10px rgba(59, 130, 246, 0.55), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: transform 0.2s ease, filter 0.2s ease;
  }
  .nav__menu-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
  .nav__menu-cta:active { transform: translateY(0); }

  /* Hide nav__list on desktop-only rules */
  .nav__toggle { display: flex; z-index: 1001; position: relative; }
  .nav__phone { display: none; }
  .nav__cta { display: none; } /* CTA lives inside the menu on mobile */

  /* Nav toggle color — always visible on the dark overlay */
  .nav.is-menu-open .nav__toggle span,
  .nav__toggle[aria-expanded="true"] span {
    background: #FFFFFF;
  }
  /* Nav bar merges into the dark menu overlay when open */
  .nav.is-menu-open,
  .nav.is-menu-open.nav--scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom-color: transparent !important;
  }
  /* Swap to WHITE logo while menu is open regardless of scroll state */
  .nav.is-menu-open .nav__logo-img--light { opacity: 1 !important; position: static !important; }
  .nav.is-menu-open .nav__logo-img--dark { opacity: 0 !important; position: absolute !important; }

  /* Lock body scroll when menu is open (JS also does this) */
  body.nav-open { overflow: hidden; }
}
@media (max-width: 520px) {
  .nav__inner { padding: 0 1rem; }
  .nav__logo img { height: 44px; }
  .nav__menu-inner { padding: calc(var(--nav-h) + 1.25rem) 1.25rem 1.5rem; }
  .nav__link { font-size: 1.35rem; }
}
@media (max-width: 520px) {
  .nav__inner { padding: 0 1rem; }
  .nav__logo img { height: 44px; }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 6rem;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: contrast(1.02) saturate(1.05);
  mix-blend-mode: normal;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* Top: soft dark tint for text legibility */
    linear-gradient(180deg, rgba(10, 37, 64, 0.40) 0%, rgba(30, 115, 210, 0.25) 45%, transparent 75%),
    /* Base wash: brand blue → white for a bright, airy feel */
    linear-gradient(180deg, rgba(30, 115, 210, 0.35) 0%, rgba(147, 197, 253, 0.30) 55%, rgba(255, 255, 255, 0.30) 100%);
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1E73D2 0%, #93C5FD 55%, #F0F7FF 100%);
  z-index: -1;
}
/* Hero text: keep white but add depth so it reads over the lighter overlay */
.hero__title { text-shadow: 0 3px 14px rgba(5, 11, 23, 0.35); }
.hero__sub { text-shadow: 0 2px 8px rgba(5, 11, 23, 0.30); }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero__glow--1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  animation: heroFloat 16s ease-in-out infinite;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  bottom: -150px; left: 10%;
  background: radial-gradient(circle, #2D5FA8 0%, transparent 70%);
  opacity: 0.3;
  animation: heroFloat 20s ease-in-out infinite reverse;
}
@keyframes heroFloat {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(40px, -30px); }
}
.hero__container-art {
  position: absolute;
  width: 90%;
  max-width: 1100px;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.18;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.25rem;
}
.hero__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}
.hero__eyebrow-sep {
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}
/* pulse removed */

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 1.75rem;
  max-width: 1000px;
}
.hero__title em { font-style: normal; }
.split-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.split-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 1s, 0.6s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-out;
}
.split-word.in {
  transform: translateY(0);
  opacity: 1;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  margin-bottom: 2.5rem;
  max-width: 580px;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(5, 11, 23, 0.55), 0 1px 3px rgba(5, 11, 23, 0.4);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 4rem;
}
.hero__ctas .btn--solid {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(5, 11, 23, 0.55);
}
.hero__ctas .btn--solid:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
/* Explore Services on the hero — solid KENCE blue for strong secondary CTA presence */
.hero__ctas .btn--ghost {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  font-weight: 700;
  box-shadow: 0 14px 32px -10px rgba(30, 115, 210, 0.65), inset 0 1px 0 rgba(255,255,255,0.18);
}
.hero__ctas .btn--ghost:hover {
  background: #1657A8;
  border-color: #1657A8;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(30, 115, 210, 0.75), inset 0 1px 0 rgba(255,255,255,0.24);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__meta-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
}
.hero__meta-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--r-pill);
  z-index: 1;
  transition: border-color .3s;
}
.hero__scroll:hover { border-color: rgba(255,255,255,0.6); }
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--white);
  border-radius: 4px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 12px); opacity: 0.3; }
}

@media (max-width: 640px) {
  .hero__meta {
    gap: 1.5rem;
    padding: 1.15rem 1rem 1rem;
    margin: 0 -0.35rem;
    background: linear-gradient(180deg, rgba(6, 22, 44, 0.55) 0%, rgba(6, 22, 44, 0.78) 100%);
    border-top: 1px solid rgba(255,255,255,0.14);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero__meta-num {
    font-size: 1.4rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  }
  .hero__meta-label {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  .hero__scroll { display: none; }
}

/* ═══════════════════════════════════════════
   TICKER (clean sliding banner)
   ═══════════════════════════════════════════ */
.ticker {
  background: var(--ink);
  color: rgba(255,255,255,0.9);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink) 0%, transparent 100%); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--ink) 0%, transparent 100%); }
.ticker__track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  will-change: transform;
}
.ticker__item {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--white);
}
.ticker__sep {
  color: var(--blue-soft);
  font-weight: 300;
  opacity: 0.5;
}
/* JS-driven seamless ticker — no keyframe */

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about { position: relative; overflow: hidden; }
.about__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(30,115,210,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(30,115,210,0.04) 0%, transparent 60%);
  pointer-events: none;
}
/* ───── Head: photo + editorial copy ───── */
.about__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 4rem;
  margin-bottom: 4.5rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.about__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  max-height: 640px;
  align-self: start;
  box-shadow: 0 24px 60px -30px rgba(10, 37, 64, 0.30);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.4s var(--ease-out);
}
.about__photo:hover img { transform: scale(1.03); }
.about__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 11, 23, 0.55) 100%);
  pointer-events: none;
}
.about__photo-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(5, 11, 23, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
}
.about__photo-tag-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-soft);
  padding-right: 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.about__photo-tag-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: -0.005em;
}

.about__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.032em;
  color: var(--ink);
  margin-top: 1.1rem;
  margin-bottom: 1.75rem;
}
.about__title span { display: block; }
.about__title em { font-style: normal; }

.about__lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 1rem;
  max-width: 44ch;
}
.about__body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 1.75rem;
  max-width: 46ch;
}
.about__signature {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.about__signature-line {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--blue);
  opacity: 0.55;
}
.about__signature-text {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}
.about__copy .btn { align-self: flex-start; }

/* ───── Editorial stat strip ───── */
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 2.25rem 0 0.5rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.about__stat {
  padding: 0.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.about__stat:first-child { padding-left: 0; }
.about__stat:last-child { border-right: none; padding-right: 0; }
.about__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.about__stat-num--word {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  letter-spacing: -0.02em;
  align-self: flex-start;
  padding-top: 0.35rem;
}
.about__stat-suffix,
.about__stat-star {
  font-size: 0.6em;
  margin-left: 0.05em;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0;
}
.about__stat-star {
  color: #F5C56F;
  vertical-align: 0.05em;
}
.about__stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .about__head { grid-template-columns: 1fr; gap: 2.25rem; align-items: start; }
  .about__photo { aspect-ratio: 3 / 4; max-height: 560px; margin: 0 auto; width: min(520px, 100%); }
  .about__copy { padding: 0; }
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .about__stat { padding: 1.25rem 1.5rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .about__stat:nth-child(2n) { border-right: none; padding-right: 0; }
  .about__stat:nth-child(2n+1) { padding-left: 0; }
  .about__stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0.5rem; }
}
@media (max-width: 540px) {
  .about__stats { grid-template-columns: 1fr; }
  .about__stat { border-right: none; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
  .about__stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ═══════════════════════════════════════════
   SERVICES (editorial list)
   ═══════════════════════════════════════════ */
.services__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}
.services__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 1.25rem;
}
.services__title em { font-style: normal; }
.services__head-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-2);
  padding-bottom: 0.5rem;
}

/* ─── Uniform service grid ─── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  perspective: 1400px;
}

/* ───── Services hero banner (full-width Container Sales) ───── */
.services__hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 340px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ink);
  margin: 0 0 1rem;
  box-shadow: 0 24px 60px -30px rgba(10, 37, 64, 0.35);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s;
}
.services__hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 72px -30px rgba(10, 37, 64, 0.42);
}
.services__hero-media {
  position: relative;
  overflow: hidden;
  background: #0b1a2f;
  min-height: 340px;
}
.services__hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.services__hero:hover .services__hero-media img { transform: scale(1.03); }
.services__hero-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 23, 0.35) 0%, rgba(5, 11, 23, 0.15) 40%, rgba(5, 11, 23, 0.02) 100%);
  pointer-events: none;
}
.services__hero-badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  display: inline-flex; align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  z-index: 2;
}
.services__hero-body {
  padding: 2.4rem 2.2rem;
  color: #fff;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.services__hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.services__hero-eyebrow-dot {
  display: inline-block; width: 5px; height: 5px;
  background: var(--blue); border-radius: 50%;
}
.services__hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0.8rem 0 0.7rem;
  color: #fff;
}
.services__hero-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.services__hero-pricing {
  display: flex; align-items: stretch;
  gap: 1.25rem;
  padding: 1rem 0 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.services__hero-price {
  display: flex; flex-direction: column;
  flex: 1;
}
.services__hero-price-size {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.services__hero-price-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.services__hero-price-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.10);
}
.services__hero-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.services__hero-cta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--blue);
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.services__hero-cta:hover {
  background: #2a83e2;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(30, 115, 210, 0.5);
}
.services__hero-cta svg { width: 14px; height: 14px; }
.services__hero-trust {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}
.services__hero-trust-dot {
  display: inline-block; width: 5px; height: 5px;
  background: #22c55e; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}
@media (max-width: 900px) {
  .services__hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .services__hero-media { min-height: 220px; }
  .services__hero-body { padding: 1.75rem 1.5rem; }
}

/* ───── Flip card architecture ───── */
.svc {
  position: relative;
  min-height: 420px;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.svc__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.78s cubic-bezier(0.42, 0.05, 0.15, 1.02);
  will-change: transform;
}
.svc:hover .svc__inner,
.svc.is-flipped .svc__inner {
  transform: rotateY(180deg);
}

.svc__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.85rem 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow: hidden;
  isolation: isolate;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: border-color .35s, box-shadow .35s;
}
.svc:hover .svc__face { box-shadow: 0 24px 48px -20px rgba(10, 37, 64, 0.22); }

/* ───── Image band on flip card front ───── */
.svc__image {
  position: relative;
  /* Break out of the parent padding for a full-bleed image band */
  margin: -1.85rem -1.65rem 1.15rem;
  height: 210px;
  overflow: hidden;
  background: var(--blue-tint-2);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.svc__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out);
  display: block;
}
.svc__image::after {
  /* Subtle bottom fade so title never fights busy image edges */
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 100%);
  pointer-events: none;
}
.svc:hover .svc__image img { transform: scale(1.045); }

/* ═════════════════════════════════════════
   Flip card back v4 — split-panel spec sheet
   Blue hero block on top with the killer fact,
   dark navy body below with title + checklist + CTA.
   Zero decoration for decoration's sake.
   ═════════════════════════════════════════ */
.svc__face--back {
  transform: rotateY(180deg);
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 22px 40px -22px rgba(10, 37, 64, 0.35);
}
.svc__ambient { display: none !important; }

/* ─── TOP BLOCK: KENCE photo hero panel with dark overlay ─── */
.svc__hero-fact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.3rem;
  padding: 1.15rem 1.5rem 1rem;
  background:
    /* Dark gradient overlay top-to-bottom for readable text */
    linear-gradient(180deg,
      rgba(5, 11, 23, 0.35) 0%,
      rgba(5, 11, 23, 0.55) 55%,
      rgba(5, 11, 23, 0.82) 100%),
    /* Per-card photo, injected via --card-image on the parent .svc */
    var(--card-image, url("Kence Advantage.jpg")) center 45% / cover no-repeat,
    /* Fallback deep navy */
    #0A1729;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-width: none;
  opacity: 1;
  transform: none;
  transition: none;
  min-height: 110px;
  overflow: hidden;
  isolation: isolate;
}
.svc__hero-fact::after {
  /* Subtle inner shadow for depth at the bottom edge, blends into navy body */
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -8px 12px -6px rgba(5, 11, 23, 0.55);
  pointer-events: none;
}
.svc__hero-fact-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.svc__hero-fact-value {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--white);
  line-height: 1.05;
  text-align: left;
  white-space: normal;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

/* ─── BOTTOM SECTION: dark navy body ─── */
.svc__back-head {
  padding: 1.1rem 1.5rem 0;
  margin-bottom: 0;
  opacity: 1;
  transform: none;
  transition: none;
}
.svc__back-eyebrow { display: none; }
.svc__back-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
  color: var(--white);
  background: none;
  -webkit-text-fill-color: initial;
}

.svc__back-divider {
  display: block;
  width: 22px;
  height: 2px;
  flex-shrink: 0;
  background: var(--blue);
  margin: 0.7rem 1.5rem 0.9rem;
  border-radius: 1px;
  transform: none;
  transition: none;
}

.svc__checklist {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0 0 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}
.svc__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
  transform: none;
  transition: none;
}
.svc__checklist-check {
  flex-shrink: 0;
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  margin-top: 3px;
  background: transparent;
  border: 1.5px solid var(--blue);
  padding: 0;
  color: transparent;
  font-size: 0;
}
.svc__checklist-check::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2.5px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(-45deg);
}
.svc__checklist-check::after { display: none; }
.svc__checklist-text { display: inline-block; color: rgba(255, 255, 255, 0.72); }

/* ── Pricing table (Container Sales, Prefab, Reefer flip backs) ── */
.svc__pricing {
  padding: 0 1.5rem;
  margin: 0 0 0.55rem;
  flex-grow: 1;
}
.svc__pricing-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.11);
}
.svc__pricing-row:last-child { border-bottom: none; }
.svc__pricing-size {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  flex-shrink: 0;
}
.svc__pricing-dots {
  flex: 1;
  align-self: center;
  height: 1px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.28) 1px, transparent 1.2px);
  background-size: 5px 100%;
  background-repeat: repeat-x;
}
.svc__pricing-price {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  flex-shrink: 0;
}
.svc__mini-features {
  list-style: none;
  padding: 0.5rem 1.5rem 0.7rem;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.svc__mini-features li {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.5;
  position: relative;
  padding-left: 0.85rem;
}
.svc__mini-features li::before {
  content: '·';
  position: absolute;
  left: 0.2rem;
  color: var(--blue);
  font-weight: 700;
}
.svc__mini-features li + li { margin-top: 0.15rem; }

.svc__back-foot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 1;
  transform: none;
  transition: none;
  flex-shrink: 0;
}
.svc__inquire {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: none;
}
.svc__inquire::before { display: none; }
.svc__inquire:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(30, 115, 210, 0.55);
}
.svc__inquire:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.svc__inquire svg {
  width: 11px;
  height: 11px;
  color: currentColor;
  transition: transform 0.3s ease;
}
.svc__inquire:hover svg { transform: translateX(2px); }

.svc__back-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: center;
}
.svc__back-trust-dot { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  .svc__hero-fact, .svc__back-head, .svc__back-divider,
  .svc__checklist li, .svc__back-foot {
    transition: none !important;
  }
}

/* ───── Front face content ───── */
.svc__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
  min-height: 46px;
}
.svc__icon-chip {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,115,210,0.14) 0%, rgba(30,115,210,0.04) 100%);
  border: 1px solid rgba(30,115,210,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .45s var(--ease-out), background .35s, border-color .35s;
}
.svc__icon-chip svg { width: 24px; height: 24px; }
.svc:hover .svc__icon-chip {
  background: linear-gradient(135deg, rgba(30,115,210,0.22) 0%, rgba(30,115,210,0.08) 100%);
  border-color: rgba(30,115,210,0.35);
  transform: rotate(-4deg) scale(1.06);
}
.svc__tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: var(--white);
}
.svc__body { flex-grow: 1; }
.svc__title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.24;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.svc__title em { font-style: normal; }
.svc__desc {
  font-size: 0.87rem;
  color: var(--text-2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.9em;
}
.svc__hint {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: color .35s;
}
.svc__hint svg { width: 14px; height: 14px; }
.svc:hover .svc__hint { color: var(--blue); }

/* ───── Featured card variant (front) ───── */
.svc--featured .svc__face--front {
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy) 60%, var(--navy-deep) 100%);
  border-color: var(--ink);
  color: var(--white);
}
.svc--featured .svc__face--front::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.svc--featured .svc__face--front::after {
  content: '';
  position: absolute;
  top: -30%; right: -30%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(30,115,210,0.4) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.svc--featured .svc__face--front > * { position: relative; z-index: 1; }
.svc--featured .svc__title { color: var(--white); }
.svc--featured .svc__desc { color: rgba(255,255,255,0.68); }
.svc--featured .svc__icon-chip {
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(255,255,255,0.22);
  color: var(--blue-soft);
}
.svc--featured .svc__hint { color: rgba(255,255,255,0.55); }
.svc--featured:hover .svc__hint { color: var(--blue-soft); }

/* ───── Responsive ───── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services__grid { grid-template-columns: 1fr; gap: 1.35rem; }
  .svc, .svc__inner, .svc__face { min-height: 360px; }
  .svc__face--front { padding: 1.65rem 1.5rem 1.45rem; }
  .svc__image {
    margin: -1.65rem -1.5rem 1.15rem;
    height: 200px;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }
  .svc__image img { object-position: center 40%; }
  .svc__title { font-size: 1.35rem; line-height: 1.2; margin-bottom: 0.5rem; }
  .svc__desc { font-size: 0.92rem; line-height: 1.55; }
  .svc__hint { display: none; }
}
@media (max-width: 960px) {
  .services__head { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
}

/* Touch devices: kill the hover-triggered flip and rely on tap toggle */
@media (hover: none) {
  .svc:hover .svc__inner { transform: none; }
  .svc.is-flipped .svc__inner { transform: rotateY(180deg); }
}

/* ═══════════════════════════════════════════
   CONTAINERS (DARK)
   ═══════════════════════════════════════════ */
.section--dark {
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.containers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.product-card {
  position: relative;
  background: linear-gradient(160deg, rgba(30, 115, 210, 0.06) 0%, rgba(255, 255, 255, 0.02) 60%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), border-color .3s, background .3s, box-shadow .4s;
  overflow: hidden;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91,155,213,0.35);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(91,155,213,0.14);
}
.product-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
/* Hero photo band at top of card */
.product-card__hero {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0B1729;
}
.product-card__hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.product-card:hover .product-card__hero img { transform: scale(1.045); }
.product-card__badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: var(--white);
  z-index: 1;
  box-shadow: 0 6px 16px -4px rgba(30, 115, 210, 0.6);
}
.product-card__badge--alt {
  background: rgba(11, 23, 41, 0.68);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Sold-out state — full-cover scrim + centered "Sold out" ribbon */
.product-card.is-sold-out { cursor: default; }
.product-card.is-sold-out .product-card__hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 14, 27, 0.55) 0%, rgba(6, 14, 27, 0.75) 100%);
  z-index: 1;
}
.product-card.is-sold-out .product-card__hero img { filter: grayscale(0.9) brightness(0.6); transform: none !important; }
.product-card__soldout {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  z-index: 2;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fef2f2;
  background: rgba(185, 28, 28, 0.92);
  border: 2px solid rgba(254, 226, 226, 0.55);
  border-radius: 6px;
  box-shadow: 0 10px 30px -6px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.product-card.is-sold-out:hover { transform: none; border-color: rgba(255,255,255,0.08); box-shadow: none; }
.product-card.is-sold-out .product-card__cta {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
/* Body area below the hero */
.product-card__body {
  display: flex; flex-direction: column;
  gap: 0.85rem;
  padding: 1.4rem 1.5rem 1.4rem;
  flex: 1;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0;
}
.product-card__desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
  flex-grow: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__foot {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0.35rem;
}
.product-card__price { display: flex; flex-direction: column; }
.product-card__from {
  display: block;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.product-card__amount {
  display: inline-flex; align-items: baseline; gap: 0.15rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  line-height: 1;
}
.product-card__amount strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.product-card__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.72rem 1.1rem;
  background: var(--white);
  color: var(--ink);
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  flex-shrink: 0;
}
.product-card__cta svg { width: 13px; height: 13px; transition: transform .3s var(--ease-out); }
.product-card__cta:hover { background: var(--blue); color: var(--white); }
.product-card__cta:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════
   Container detail side panel
   ═══════════════════════════════════════════ */
.detail {
  position: fixed; inset: 0; z-index: 10000;
  visibility: hidden;
  pointer-events: none;
}
.detail.is-open { visibility: visible; pointer-events: auto; }
.detail__scrim {
  position: absolute; inset: 0;
  background: rgba(5, 11, 23, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.detail.is-open .detail__scrim { opacity: 1; }
.detail__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(560px, 100vw);
  background: linear-gradient(180deg, #0B1729 0%, #061020 100%);
  color: var(--white);
  padding: 2.25rem 2.25rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -30px 0 80px -10px rgba(0, 0, 0, 0.6);
  border-left: 1px solid rgba(255,255,255,0.05);
}
.detail.is-open .detail__panel { transform: translateX(0); }
.detail__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s ease;
  z-index: 2;
}
.detail__close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  transform: rotate(90deg);
}
.detail__head {
  padding-right: 3rem;
  margin-bottom: 1.75rem;
}
.detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.detail__from {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.detail__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Gallery */
.detail__gallery { margin-bottom: 1.85rem; }
.detail__hero {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(30,115,210,0.18) 0%, transparent 70%),
    linear-gradient(180deg, #0B1729 0%, #050B17 100%);
  margin-bottom: 0.9rem;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.detail__hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  display: block;
  transition: opacity 0.3s ease;
}
.detail__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}
.detail__thumbs:has(.detail__thumb:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}
.detail__thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.06);
  background: #050B17;
  padding: 0;
  cursor: pointer;
  transition: all 0.22s ease;
}
.detail__thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.6;
  transition: opacity 0.22s ease;
}
.detail__thumb:hover img { opacity: 0.9; }
.detail__thumb.is-active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 115, 210, 0.28);
}
.detail__thumb.is-active img { opacity: 1; }

/* Specs */
.detail__specs {
  display: flex; flex-direction: column;
  gap: 0;
  margin-bottom: 1.9rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}
.detail__spec {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 1.25rem;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}
.detail__spec:last-child { border-bottom: none; }
.detail__spec-key {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.detail__spec-key::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 4px;
  background: rgba(30,115,210,0.15);
  border: 1px solid rgba(30,115,210,0.35);
  flex-shrink: 0;
}
.detail__spec-val {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
  text-align: right;
  letter-spacing: -0.005em;
}

/* CTA */
.detail__cta {
  display: flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: all 0.24s ease;
  box-shadow: 0 16px 32px -10px rgba(30, 115, 210, 0.55);
}
.detail__cta:hover {
  background: #1657A8;
  border-color: #1657A8;
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -10px rgba(30, 115, 210, 0.7);
}
.detail__cta:active { transform: translateY(0); }

@media (max-width: 640px) {
  .detail__panel { padding: 1.75rem 1.35rem 1.5rem; width: 100vw; }
  .detail__thumbs { gap: 0.4rem; }
  .detail__price { font-size: 1.9rem; }
  .detail__specs { font-size: 0.85rem; }
}

@media (max-width: 980px) { .containers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .containers__grid { grid-template-columns: 1fr; } }

.containers__custom {
  margin-top: 2rem;
  padding: 2.5rem;
  background: rgba(30,115,210,0.08);
  border: 1px solid rgba(30,115,210,0.2);
  border-radius: var(--r-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.containers__custom-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.containers__custom-text p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
}

/* ═══════════════════════════════════════════
   CALCULATOR
   ═══════════════════════════════════════════ */
/* ═════════════════════════════════════════
   INSTANT ESTIMATE — matches site palette
   ═════════════════════════════════════════ */
.calc-section { background: #F5F8FC; }

.calc--editorial {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(10, 37, 64, 0.18);
}
.calc__paper { display: none; }

/* ───── FORM (left) ───── */
.calc__form {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
  border-right: 1px solid var(--border);
}
.calc__field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: opacity 0.4s ease;
}
.calc__field.is-dim {
  opacity: 0.32;
  pointer-events: none;
}
.calc__field.is-lit .calc__field-label { animation: calcLabelPulse 1.4s ease-out; }
.calc__field.is-lit .calc__select-wrap,
.calc__field.is-lit .calc__service { animation: calcFieldLight 1.4s ease-out; }
@keyframes calcLabelPulse {
  0%   { color: var(--blue); transform: translateX(-3px); letter-spacing: 0.16em; }
  40%  { color: var(--blue); transform: translateX(0); letter-spacing: 0.14em; }
  100% { color: var(--text-3); transform: translateX(0); letter-spacing: 0.14em; }
}
@keyframes calcFieldLight {
  0%   { border-bottom-color: var(--blue); box-shadow: 0 4px 20px -12px rgba(30, 115, 210, 0.55); }
  100% { border-bottom-color: var(--border); box-shadow: 0 0 0 rgba(30, 115, 210, 0); }
}

.calc__field-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.3s ease;
}

.calc__select-wrap {
  position: relative;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.55rem;
  transition: border-color 0.3s ease;
}
.calc__select-wrap:focus-within,
.calc__select-wrap:hover { border-bottom-color: var(--blue); }
.calc__select {
  width: 100%;
  padding: 0.4rem 2rem 0.4rem 0;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}
.calc__select option {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
.calc__select-caret {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
  width: 12px;
  height: 8px;
  color: var(--blue);
  pointer-events: none;
  transition: transform 0.25s ease;
}
.calc__select-wrap:focus-within .calc__select-caret { transform: translateY(-60%) rotate(180deg); }

/* Service — sliding underline toggle */
.calc__service {
  position: relative;
  display: flex;
  gap: 1.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.calc__service-opt {
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.calc__service-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calc__service-opt span {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: -0.005em;
  transition: color 0.25s ease;
  display: inline-block;
  padding: 0.2rem 0;
}
.calc__service-opt:hover span { color: var(--ink); }
.calc__service-opt input:checked + span { color: var(--ink); font-weight: 600; }
.calc__service-underline {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--blue);
  border-radius: 1px;
  transition: left 0.45s cubic-bezier(0.65, 0, 0.35, 1), width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ───── SLIP (right) ───── */
.calc__slip {
  display: flex;
  flex-direction: column;
  background: var(--soft, #F8FAFC);
}
.calc__slip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 2rem;
  border-bottom: 1px solid var(--border);
}
.calc__slip-brand,
.calc__slip-date {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}

.calc__slip-body {
  padding: 1.85rem 2rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.calc__slip-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.55rem;
}
.calc__slip-total {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 1.5rem;
  min-height: 1em;
}

.calc__slip-lines {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px dashed var(--border);
}
.calc__slip-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.calc__slip-line-name {
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.calc__slip-line-dots {
  height: 1px;
  border-bottom: 1px dotted var(--border-strong, #D1D5DB);
  transform: translateY(-4px);
}
.calc__slip-line-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.calc__slip-line-price[data-empty="true"] {
  color: var(--text-4, #94A3B8);
  font-family: var(--font-body);
  font-weight: 400;
}

.calc__slip-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-top: 0.25rem;
  min-height: 1.3rem;
}

.calc__slip-foot {
  padding: 1.15rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.calc__slip-cta {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s var(--ease-out), box-shadow 0.3s ease;
}
.calc__slip-cta svg { transition: transform 0.3s var(--ease-out); }
.calc__slip-cta:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(30, 115, 210, 0.45);
}
.calc__slip-cta:hover:not(:disabled) svg { transform: translateX(3px); }
.calc__slip-cta:disabled {
  background: transparent;
  color: var(--text-3);
  border: 1px dashed var(--border-strong, #D1D5DB);
  cursor: not-allowed;
  letter-spacing: 0.12em;
}
.calc__slip-cta:disabled svg { display: none; }
.calc__slip-fine {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.4;
}

/* ───── Responsive ───── */
@media (max-width: 900px) {
  .calc--editorial { grid-template-columns: 1fr; }
  .calc__form { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 1.75rem; }
  .calc__slip-head, .calc__slip-body, .calc__slip-foot { padding-left: 1.75rem; padding-right: 1.75rem; }
}
@media (max-width: 520px) {
  .calc__form { padding: 1.5rem 1.25rem; }
  .calc__service { gap: 1.25rem; flex-wrap: wrap; }
  .calc__slip-head, .calc__slip-body, .calc__slip-foot { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  grid-row: span 2;
  background: var(--blue-tint-2);
}
.gallery__item--tall { grid-row: span 3; }
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }

.gallery__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.gallery__placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--blue-tint) 0%, var(--white) 50%, var(--blue-tint) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(30,115,210,0.04) 12px, rgba(30,115,210,0.04) 13px);
  background-blend-mode: multiply;
  transition: transform .8s var(--ease-out);
}
.gallery__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .8s var(--ease-out);
}
.gallery__placeholder::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%231E73D2' stroke-width='1.2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='9' cy='9' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") no-repeat center;
  opacity: 0.4;
}
.gallery__item:hover .gallery__placeholder,
.gallery__item:hover .gallery__img { transform: scale(1.05); }

.gallery__item figcaption { display: none; }

@media (max-width: 880px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  padding: 2rem;
}
.lightbox[aria-hidden="false"] { opacity: 1; visibility: visible; }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__img { max-width: 90vw; max-height: 80vh; border-radius: var(--r); }
.lightbox__caption {
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-family: var(--font-display);
}

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  background: var(--blue-tint-2);
  border-radius: var(--r-pill);
  margin-top: 1.5rem;
}
.reviews__stars { color: #FFB400; font-size: 1.1rem; letter-spacing: 2px; }
.reviews__rating-text {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.85rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .4s var(--ease-out), border-color .3s, box-shadow .4s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.review-card__stars {
  color: #FFB400;
  letter-spacing: 2px;
  font-size: 0.95rem;
}
.review-card p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
  flex-grow: 1;
  font-style: normal;
}
.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.review-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card cite {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink);
  display: block;
}
.review-card footer span {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 980px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   WHY
   ═══════════════════════════════════════════ */
.why {
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.why__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
  position: relative;
  z-index: 1;
}
.why__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-top: 1.25rem;
}
.why__title em { font-style: normal; }
.why__head-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  padding-bottom: 0.5rem;
}

/* ═════════════════════════════════════════
   KENCE Advantage — numbered editorial list
   ═════════════════════════════════════════ */
.why__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

/* ─── Left: image + tag ─── */
.why__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-self: stretch;
  min-height: 100%;
}
.why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out);
}
.why__image:hover img { transform: scale(1.03); }
.why__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 11, 23, 0.55) 100%);
  pointer-events: none;
}
.why__image-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(5, 11, 23, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.why__image-tag-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-soft, #93C5FD);
  padding-right: 0.7rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.why__image-tag-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.005em;
}

/* ─── Right: numbered list ─── */
/* ═════════════════════════════════════════
   The KENCE Advantage — split editorial spread
   Small framed photo left, content right
   ═════════════════════════════════════════ */
.why__spread {
  display: grid;
  grid-template-columns: 0.8fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* Small framed photo left */
.why__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.6),
              0 12px 32px -12px rgba(0, 0, 0, 0.4);
}
.why__frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.why__frame:hover img { transform: scale(1.03); }
.why__frame-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      transparent 40%,
      rgba(5, 11, 23, 0.35) 70%,
      rgba(5, 11, 23, 0.85) 100%);
  pointer-events: none;
}

/* Content column right */
.why__content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.why__content .section__eyebrow { align-self: flex-start; }
/* Est. 2009 stamp — signature-style, bottom-left */
.why__stamp {
  position: absolute;
  bottom: 2rem; left: 2rem;
  display: flex; align-items: baseline;
  gap: 0.85rem;
  color: var(--white);
  padding: 1rem 1.35rem 0.95rem;
  border-left: 2px solid var(--blue);
  background: linear-gradient(90deg, rgba(5,11,23,0.6) 0%, rgba(5,11,23,0.15) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 8px 8px 0;
}
.why__stamp-eyebrow {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  align-self: center;
}
.why__stamp-year {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
}
.why__stamp-loc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.05em;
  align-self: center;
}

/* Editorial body — stacked setup/answer within the content column */
.why__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  position: relative;
  z-index: 1;
}
.why__body-p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0;
  font-weight: 400;
}
.why__body-p--setup {
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  padding-left: 1.4rem;
}
.why__body-p--setup::before {
  content: '';
  position: absolute;
  left: 0; top: 0.35em; bottom: 0.35em;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.why__body-p--answer {
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding-left: 1.4rem;
  font-weight: 500;
}
.why__body-p--answer::before {
  content: '';
  position: absolute;
  left: 0; top: 0.35em; bottom: 0.35em;
  width: 2px;
  background: var(--blue);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(30, 115, 210, 0.4);
}
/* Statement — big display type, editorial */
.why__statement {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: left;
  max-width: 20ch;
  margin: 0;
  position: relative; z-index: 1;
}
.why__statement em {
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.02em;
}

/* Stat pillars — horizontal strip, hairline dividers between */
.why__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 2.75rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
  z-index: 1;
}
.why__pillar {
  padding: 0 2.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.why__pillar:first-child {
  padding-left: 0;
  border-left: none;
}
.why__pillar-num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--white);
  display: inline-block;
}
.why__pillar-num sup {
  font-size: 0.42em;
  font-weight: 700;
  color: var(--blue);
  vertical-align: super;
  position: relative;
  top: -0.15em;
  margin-left: 0.05em;
}
.why__pillar-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .why__spread { grid-template-columns: 1fr; gap: 2.5rem; }
  .why__frame { aspect-ratio: 3 / 2; max-width: 100%; }
  .why__stamp { bottom: 1.2rem; left: 1.2rem; padding: 0.75rem 1rem; gap: 0.55rem; }
  .why__stamp-year { font-size: 1.8rem; }
  .why__stamp-loc { font-size: 0.7rem; }
}

/* Legacy classes preserved but unused — keep to avoid breaking any leftover references */
.why__blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
}
.why-block {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  padding: 1.8rem 0 1.8rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.4s var(--ease-out);
}
.why-block:first-child { padding-top: 0; }
.why-block:last-child { border-bottom: none; padding-bottom: 0; }

.why-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.9rem;
  bottom: 1.9rem;
  width: 2px;
  background: var(--blue);
  border-radius: 1px;
  opacity: 0;
  transform: scaleY(0.3);
  transform-origin: top center;
  transition: opacity 0.35s ease, transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
.why-block:first-child::before { top: 0; }
.why-block:last-child::before { bottom: 0; }
.why-block:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.why-block__num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
  padding-top: 0.15rem;
  transition: color 0.35s ease, transform 0.35s var(--ease-out);
}
.why-block:hover .why-block__num {
  color: var(--blue);
  transform: translateX(2px);
}

.why-block__body { padding-top: 0.15rem; }
.why-block__title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--white);
  margin-bottom: 0.55rem;
}
.why-block__title em { font-style: normal; }
.why-block p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.why-block__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.35s ease, border-color 0.35s ease;
}
.why-block__stat strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: none;
  transition: color 0.35s ease;
}
.why-block:hover .why-block__stat { color: rgba(255, 255, 255, 0.75); border-color: rgba(30, 115, 210, 0.35); }
.why-block:hover .why-block__stat strong { color: var(--blue-soft, #93C5FD); }

@media (max-width: 1024px) {
  .why__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .why__image { min-height: 340px; }
}
@media (max-width: 880px) {
  .why__head { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .why-block { grid-template-columns: 52px minmax(0, 1fr); gap: 1rem; padding: 1.4rem 0 1.4rem 0.85rem; }
  .why-block__num { font-size: 1.75rem; }
  .why-block__title { font-size: 1.15rem; }
}

/* ═══════════════════════════════════════════
   FAQ (editorial)
   ═══════════════════════════════════════════ */
.faq { background: var(--blue-tint-2); position: relative; overflow: hidden; }
.faq__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 1.25rem;
}
.faq__title em { font-style: normal; }
.faq__head-right { padding-bottom: 0.5rem; }
.faq__head-right p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  max-width: 360px;
}

.accordion {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 0.5rem 2rem;
  border: 1px solid var(--border);
}
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.85rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: padding .35s var(--ease-out);
}
.accordion__q {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
  transition: color .25s;
}
.accordion__trigger:hover .accordion__q { color: var(--blue); }
.accordion__icon {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-tint-2);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}
.accordion__icon i {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease-out), background .3s;
}
.accordion__icon i:first-child { transform: translate(-50%, -50%); }
.accordion__icon i:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__trigger[aria-expanded="true"] .accordion__icon { background: var(--ink); transform: rotate(180deg); }
.accordion__trigger[aria-expanded="true"] .accordion__icon i { background: var(--white); }
.accordion__trigger[aria-expanded="true"] .accordion__icon i:last-child { transform: translate(-50%, -50%) rotate(0deg); }

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease-out);
  padding-right: 60px;
}
.accordion__panel[hidden] { display: block; max-height: 0; }
.accordion__panel:not([hidden]) { max-height: 400px; }
.accordion__panel p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  padding-bottom: 1.5rem;
  max-width: 92%;
}
@media (max-width: 880px) {
  .faq__head { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .accordion { padding: 0.25rem 1.25rem; }
  .accordion__trigger { grid-template-columns: 1fr 36px; gap: 0.75rem; padding: 1.35rem 0; }
  .accordion__panel { padding-right: 0; }
  .accordion__icon { width: 36px; height: 36px; }
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
/* Dual submit action (Send Message + WhatsApp) */
.contact-form__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.35rem;
}
.contact-form__submit,
.contact-form__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s var(--ease-out), box-shadow 0.3s ease;
  border: 1px solid transparent;
  width: 100%;
}
.contact-form__submit svg,
.contact-form__whatsapp svg { flex-shrink: 0; }
.contact-form__whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  box-shadow: 0 6px 18px -8px rgba(37, 211, 102, 0.55);
}
.contact-form__whatsapp:hover {
  background: #1FBA5A;
  border-color: #1FBA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.65);
}
.contact-form__helper {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}
@media (max-width: 640px) {
  .contact-form__actions { grid-template-columns: 1fr; }
}

.contact__lead {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 1rem 0 2.5rem;
  max-width: 460px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-tint-2);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__list li:hover .contact__icon { background: var(--ink); color: var(--white); }
.contact__list li > div { display: flex; flex-direction: column; gap: 0.1rem; }
.contact__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  font-family: var(--font-display);
}
.contact__list a, .contact__list span:not(.contact__label) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.contact__list a:hover { color: var(--blue); }

/* Contact form */
.contact__form-wrap {
  background: var(--blue-tint-2);
  padding: 2.5rem;
  border-radius: var(--r-xl);
}
.contact-form__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.contact-form__sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Floating label fields */
.ff {
  position: relative;
  margin-bottom: 0.75rem;
}
.ff input,
.ff select,
.ff textarea {
  width: 100%;
  padding: 1.45rem 1rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.ff textarea { padding-top: 1.6rem; min-height: 110px; resize: vertical; }
.ff select { padding-top: 1.45rem; padding-bottom: 0.5rem; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.ff label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  pointer-events: none;
  transition: top .2s var(--ease-out), font-size .2s, color .2s;
}
.ff label span { color: var(--blue); }
.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(30,115,210,0.1);
}
.ff input:focus + label,
.ff input:not(:placeholder-shown) + label,
.ff textarea:focus + label,
.ff textarea:not(:placeholder-shown) + label,
.ff--select select:valid + label,
.ff--select select:focus + label {
  top: 0.5rem;
  font-size: 0.72rem;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form__row { grid-template-columns: 1fr; }
}

.contact-form--success {
  text-align: center;
  padding: 3rem 1.5rem;
}
.contact-form--success svg {
  width: 56px;
  height: 56px;
  color: var(--blue);
  margin: 0 auto 1rem;
}
.contact-form--success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.contact-form--success p { color: var(--text-2); }

.contact-form__error {
  background: #FEE2E2;
  color: #991B1B;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  border: 1px solid #FCA5A5;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.footer__brand img {
  margin-bottom: 1.5rem;
  max-width: 220px;
  height: auto;
}
.footer__brand p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 360px;
}
.footer__social {
  display: flex;
  gap: 0.65rem;
}
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease-out);
}
.footer__social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col a, .footer__col span {
  color: rgba(255,255,255,0.55);
  font-size: 0.93rem;
  transition: color .2s;
}
.footer__col a:hover { color: var(--white); }

.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin: 2rem -0.5rem 1rem;
  user-select: none;
  position: relative;
  z-index: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom-right {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.footer__pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
}
.footer__portal {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  margin-left: 0.75rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer__portal:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.footer__wixflo {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding-bottom: 1px;
  margin-left: 0.5rem;
  font-size: 0.78rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__wixflo:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
@media (max-width: 540px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 6.5rem;
  right: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out), background 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
  box-shadow: 0 12px 28px -10px rgba(10, 37, 64, 0.45);
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  background: var(--blue);
  transform: translateY(-3px) scale(1);
  box-shadow: 0 16px 34px -10px rgba(30, 115, 210, 0.55);
}
.scroll-top:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
@media (max-width: 520px) {
  .scroll-top { right: 1.15rem; bottom: 5.5rem; width: 42px; height: 42px; }
  .scroll-top svg { width: 18px; height: 18px; }
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform .3s var(--ease-back), box-shadow .3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  color: var(--white);
}
.whatsapp-float__pulse { display: none; }

/* ═══════════════════════════════════════════
   REVEAL MOTION
   ═══════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition-property: opacity, transform, filter;
  transition-duration: 1.1s, 1.1s, 1.1s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0.22, 1, 0.36, 1), ease-out;
  transition-delay: var(--delay, 0s);
  filter: blur(2px);
}
.reveal-up.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Section enter — content choreographed on entry */
.section, .hero, .ticker, .footer { position: relative; }

/* Curtain wipe — dark sections "rise into view" as you scroll to them */
.section--dark,
.why {
  overflow: hidden;
  position: relative;
}
.section--dark > .section-curtain,
.why > .section-curtain {
  position: absolute;
  inset: 0;
  background: var(--white);
  transform-origin: bottom;
  transform: scaleY(1);
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  z-index: 10;
}
.section--dark.section-entered > .section-curtain,
.why.section-entered > .section-curtain {
  transform: scaleY(0);
}

/* Tinted sections (faq, calc) get a subtle gradient wash on enter instead */
.faq, .calc-section {
  overflow: hidden;
  position: relative;
}
.faq::before, .calc-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
  opacity: 1;
  transition: opacity 1.2s ease-out;
  pointer-events: none;
  z-index: 1;
}
.faq.section-entered::before, .calc-section.section-entered::before { opacity: 0; }

/* "Drawn" eyebrow line — animates width on enter */
.section__eyebrow-dot {
  width: 0;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.section-entered .section__eyebrow .section__eyebrow-dot,
.reveal-up.in .section__eyebrow-dot { width: 28px; }

/* Hero eyebrow line — draws in */
.hero__eyebrow-line {
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
.hero__eyebrow.in .hero__eyebrow-line,
.hero__eyebrow.in ~ * .hero__eyebrow-line,
.section-entered .hero__eyebrow-line { width: 32px; }

/* Scroll-tied parallax helper */
.parallax-up { will-change: transform; }

/* ═══════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════ */
@media print {
  .nav, .whatsapp-float, .lightbox, .hero__scroll, .marquee, .scroll-progress { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section { padding: 2rem 0; }
  .reveal-up, .split-word { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   Performance: skip layout + paint off-screen
   Browser reserves ~900px per section so the scrollbar stays stable
   ═══════════════════════════════════════════ */
.containers,
.gallery,
.reviews,
.calc-section,
.faq,
.why {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
/* Isolate card hover work so a single hover doesn't reflow siblings */
.product-card,
.svc,
.gallery__item {
  contain: layout paint style;
}
/* GPU-composite transforming elements (hint to browser) */
.svc__inner,
.product-card,
.svc__image img,
.product-card__hero img,
.gallery__img {
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PUBLIC SITE PERF PASS — layout-safe only
   content-visibility / contain-layout on .section broke the flow, so only
   compositor + reduced-motion hints here.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Card paint containment only — safe, no layout side-effects */
.svc,
.product-card,
.review-card,
.gallery__item { contain: paint; }

/* GPU-composited compositor hints on fixed / animated elements */
.ticker__track,
.whatsapp-cta,
.scroll-top-btn {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Reduced motion — accessibility + battery. Also disables the two costliest
   loops on mobile: the ticker marquee and any parallax movement. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .ticker__track { animation: none !important; transform: none !important; }
  [data-parallax] { transform: none !important; }
  .reveal-up { opacity: 1 !important; transform: none !important; }
}
