/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  --bg:          #ffffff;
  --bg-alt:      #f5f5f7;
  --card:        #ffffff;
  --text:        #1d1d1f;
  --text-2:      #6e6e73;
  --text-3:      #86868b;
  --accent:      #0071e3;
  --accent-h:    #0077ed;
  --hairline:    #d2d2d7;
  --hairline-s:  #e8e8ed;
  --radius:      18px;
  --radius-sm:   12px;
  --pill:        980px;
  --shadow-s:    0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-m:    0 14px 40px rgba(0, 0, 0, 0.10);
  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display',
          'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei',
          'Helvetica Neue', Arial, sans-serif;
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { display: block; flex-shrink: 0; }

/* ================================================================
   GLOBAL
   ================================================================ */
.neon-cyan { color: var(--accent); }

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.section { padding: 120px 0; position: relative; z-index: 1; }

/* ================================================================
   FADE-IN (scroll triggered)
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 64px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--pill);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn--neon {
  background: var(--accent);
  color: #fff;
}
.btn--neon:hover {
  background: var(--accent-h);
}

.btn--ghost {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
}
.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.10);
}

.btn--lg  { padding: 15px 36px; font-size: 15px; }
.btn--xl  { padding: 18px 46px; font-size: 16px; }
.btn--sm  { padding: 8px 18px; font-size: 13px; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline-s);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { display: flex; }
.logo-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo-text em {
  font-style: normal;
  font-weight: 400;
  color: var(--text-3);
  font-size: 11px;
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 980px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav__link:hover,
.nav__link.active {
  color: var(--text);
  background: rgba(0, 0, 0, 0.06);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  gap: 2px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline-s);
  position: relative;
  z-index: 2;
}
.nav__mobile-link {
  font-size: 15px;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.nav__mobile-link:hover { background: rgba(0, 0, 0, 0.05); }
.nav__mobile-cta { margin-top: 12px; align-self: flex-start; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px 0 96px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: var(--bg);
}

/* Apple-style ambient light blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -140px;
  width: 680px; height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.45) 0%, rgba(0, 113, 227, 0) 65%);
  filter: blur(16px);
  pointer-events: none;
  animation: blobDrift 10s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -220px; left: -160px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 120, 255, 0.46) 0%, rgba(110, 120, 255, 0) 65%);
  filter: blur(16px);
  pointer-events: none;
  animation: blobDrift 13s ease-in-out infinite alternate-reverse;
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1);         opacity: 0.55; }
  to   { transform: translate(-110px, 70px) scale(1.22); opacity: 1; }
}

.hero__scanlines,
.hero__bottom-fade,
.cta__aurora { display: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: auto auto;
  column-gap: 72px;
  row-gap: 0;
  align-items: start;
}

.hero__left-top    { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; padding-bottom: 48px; }
.hero__right       { grid-column: 2; grid-row: 1 / 3; display: flex; align-items: center; }
.hero__left-bottom { grid-column: 1; grid-row: 2; display: flex; flex-direction: column; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFade 0.7s var(--ease) 0.1s forwards;
}
.eyebrow-pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: 700;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFade 0.7s var(--ease) 0.2s forwards;
}

.hero__headline-brand {
  font-size: clamp(48px, 6.5vw, 80px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text);
}

.hero__agent-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-alt);
  border-radius: 980px;
  padding: 10px 20px 10px 16px;
  width: fit-content;
  line-height: 1;
}

.agent-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__headline-goal {
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--accent);
}

.hero__usps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  opacity: 0;
  animation: heroFade 0.7s var(--ease) 0.32s forwards;
}

.usp-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-s);
  padding: 22px 4px;
  display: flex;
  flex-direction: column;
}
.usp-card:last-child { border-bottom: none; }
.usp-card__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 8px;
}
.usp-card__badge {
  display: inline-block;
  width: fit-content;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid var(--hairline);
  border-radius: 980px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.usp-card__body strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.45;
}
.usp-card__body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

.hero__tagline {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFade 0.7s var(--ease) 0.42s forwards;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFade 0.7s var(--ease) 0.52s forwards;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   CARDS (shared)
   ================================================================ */
.pain-card,
.cap-card,
.case-card,
.process-step {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pain-card:hover,
.cap-card:hover,
.case-card:hover,
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-m);
}

/* ================================================================
   PAIN POINTS
   ================================================================ */
.painpoints { background: var(--bg-alt); }

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

.pain-card {
  padding: 36px 32px;
}
.pain-card__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 20px;
}
.pain-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.4;
}
.pain-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
}

/* ================================================================
   SERVICES
   ================================================================ */
.capabilities { background: var(--bg); }

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

.cap-card {
  padding: 36px 32px;
}
.cap-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cap-card__title {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.cap-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 22px;
}
.cap-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cap-card__tags span,
.case-card__tags span {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 980px;
  background: var(--bg-alt);
  color: var(--text-2);
}

/* ================================================================
   CASES
   ================================================================ */
.cases { background: var(--bg-alt); }

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

.case-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.case-card__industry {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.case-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 14px;
}
.case-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}
.case-card__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
  padding: 18px 0 2px;
  border-top: 1px solid var(--hairline-s);
}
.result-item { display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
.result-item__val {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.result-item__lbl {
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.case-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* ================================================================
   PROCESS
   ================================================================ */
.process-section { background: var(--bg); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process-step {
  padding: 32px 24px;
}
.process-step__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 16px;
}
.process-step__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.process-step__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}
.process-arrow {
  font-size: 26px;
  color: var(--text-3);
  padding: 36px 12px 0;
  flex-shrink: 0;
  font-weight: 300;
}

/* ================================================================
   CTA
   ================================================================ */
.cta {
  padding: 140px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--hairline-s);
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 113, 227, 0.28) 0%, rgba(110, 120, 255, 0.18) 45%, transparent 70%);
  filter: blur(14px);
  pointer-events: none;
  animation: ctaBlob 11s ease-in-out infinite alternate;
}
@keyframes ctaBlob {
  from { transform: translate(-50%, -50%) translate(0, 0) scale(1);         opacity: 0.6; }
  to   { transform: translate(-50%, -50%) translate(-70px, 44px) scale(1.16); opacity: 1; }
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta__title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 20px;
}
.cta__sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 520px;
}
.cta__actions { display: flex; flex-direction: column; gap: 24px; flex-shrink: 0; }

.cta__contact { display: flex; flex-direction: column; gap: 12px; }
.cta__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s ease;
}
.cta__contact-item svg { color: var(--accent); flex-shrink: 0; }
.cta__contact-item:hover { color: var(--text); }
.cta__tel { color: inherit; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-alt);
  padding: 64px 0 0;
  position: relative;
  z-index: 1;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.8;
  max-width: 240px;
}
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__nav-group { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-group h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.footer__nav-group a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s ease;
}
.footer__nav-group a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--hairline-s);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.footer__bottom a {
  color: var(--text-3);
}
.footer__bottom a:hover { color: var(--text); }

/* ================================================================
   MEDIA MODAL
   ================================================================ */
.media-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.media-modal.open { display: flex; }
.media-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}
.media-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 32px;
  width: min(480px, calc(100vw - 40px));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}
.media-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.15s;
}
.media-modal__close:hover { color: var(--text); }
.media-modal__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}
.media-modal__cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.media-card {
  flex: 1;
  min-width: 160px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 20px 18px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.media-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}
.media-card__platform {
  font-size: 13px;
  color: var(--text-2);
}
.media-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.media-card__hint {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}
.media-card__qr {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  margin-top: 4px;
}

/* ================================================================
   RESPONSIVE — TABLET
   ================================================================ */
@media (max-width: 1024px) {
  .hero__inner   { grid-template-columns: 1fr; grid-template-rows: none; column-gap: 0; row-gap: 0; }
  .hero__left-top    { grid-column: 1; grid-row: auto; padding-bottom: 36px; }
  .hero__right       { grid-column: 1; grid-row: auto; }
  .hero__left-bottom { grid-column: 1; grid-row: auto; padding-top: 36px; }
  .caps-grid     { grid-template-columns: repeat(2, 1fr); }
  .pain-grid     { grid-template-columns: repeat(2, 1fr); }
  .cases-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: 1fr; gap: 16px; }
  .process-arrow { display: none; }
  .cta__inner    { grid-template-columns: 1fr; gap: 48px; }
  .cta__actions  { flex-direction: row; align-items: flex-start; }
  .footer__top   { gap: 48px; }
}

/* ================================================================
   RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section    { padding: 80px 0; }

  .nav__inner { padding: 0 20px; height: 48px; }
  .nav__links { display: none; }
  .nav__inner > .btn { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile-menu.open { display: flex; }

  .hero { padding: 104px 0 64px; min-height: auto; }
  .hero__headline-brand { font-size: clamp(40px, 11vw, 60px); }
  .hero__headline-goal  { font-size: clamp(28px, 8vw, 42px); }
  .hero__agent-line     { font-size: 13px; }
  .hero__left-top       { padding-bottom: 28px; }
  .hero__left-bottom    { padding-top: 28px; }

  .caps-grid  { grid-template-columns: 1fr; }
  .pain-grid  { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }

  .cta__inner  { gap: 40px; }
  .cta__actions { flex-direction: column; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .section-title { font-size: clamp(26px, 6.5vw, 36px); }
}

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

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__eyebrow, .hero__headline, .hero__usps,
  .hero__tagline, .hero__actions {
    opacity: 1 !important;
    transform: none !important;
  }
}
