/* Cey Grup — custom styles & Axo Digital signature */

:root {
  --navy: #0b1f3a;
  --navy-deep: #071528;
  --navy-mid: #133056;
  --accent: #0d9b6a;
  --accent-bright: #12b87a;
  --accent-soft: #e8f8f1;
  --slate: #64748b;
  --surface: #f4f7fb;
  --ink: #0f172a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
}

::selection {
  background: rgba(13, 155, 106, 0.2);
  color: var(--navy-deep);
}

/* —— Sticky header —— */
.site-topbar {
  background: linear-gradient(90deg, #071528 0%, #0b1f3a 50%, #0a2438 100%);
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(13, 155, 106, 0.18);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.topbar-link:hover {
  color: #12b87a;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(11, 31, 58, 0.05), 0 12px 32px rgba(11, 31, 58, 0.07);
  border-bottom-color: transparent;
}

.site-header .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(11, 31, 58, 0.68);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .nav-link:hover {
  color: var(--navy);
  background: rgba(13, 155, 106, 0.06);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.is-active::after {
  transform: scaleX(1);
}

.site-header .nav-link.is-active {
  color: var(--accent);
  font-weight: 700;
}

.mobile-link {
  display: block;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(11, 31, 58, 0.8);
  text-decoration: none;
  border-radius: 0.6rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-link:hover,
.mobile-link.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.mobile-nav {
  border-top: 1px solid rgba(11, 31, 58, 0.06);
}

/* —— Footer —— */
.site-footer {
  background: #071528;
  color: #fff;
}

.footer-cta {
  background:
    radial-gradient(ellipse 50% 120% at 0% 50%, rgba(13, 155, 106, 0.22), transparent 55%),
    linear-gradient(90deg, #0b1f3a 0%, #0a1c34 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: #12b87a;
  padding-left: 0.2rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.15rem;
}

.footer-contact a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #12b87a;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social:hover {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

/* —— Sticky header (legacy scroll class keep) —— */
.site-header.is-scrolled .nav-link {
  /* color handled above */
}

/* —— Hero slider (premium) —— */
.hero-slider {
  position: relative;
  min-height: min(94vh, 880px);
  overflow: hidden;
  background: var(--navy-deep);
  isolation: isolate;
}

.hero-slider__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slider__media .hero-slide__bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.14);
  filter: blur(10px) brightness(0.45) saturate(0.85);
  transition:
    opacity 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.hero-slider__media .hero-slide__bg.is-active {
  opacity: 1;
  transform: scale(1.02);
  filter: blur(0) brightness(0.72) saturate(1.05);
  animation: heroKenBurns 9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slider.is-dir-next .hero-slide__bg.is-active {
  animation: heroKenBurns 9s cubic-bezier(0.22, 1, 0.36, 1) forwards, heroBgRevealNext 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slider.is-dir-prev .hero-slide__bg.is-active {
  animation: heroKenBurns 9s cubic-bezier(0.22, 1, 0.36, 1) forwards, heroBgRevealPrev 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slider__media .hero-slide__bg.is-leaving {
  opacity: 0;
  transform: scale(1.08);
  filter: blur(6px) brightness(0.35) saturate(0.7);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.55;
  animation: heroOrbFloat 16s ease-in-out infinite;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-orb--1 {
  width: 340px;
  height: 340px;
  top: 8%;
  left: -4%;
  background: rgba(13, 155, 106, 0.38);
}

.hero-orb--2 {
  width: 260px;
  height: 260px;
  bottom: 12%;
  right: 8%;
  background: rgba(19, 48, 86, 0.55);
  animation-delay: -5s;
}

.hero-orb--3 {
  width: 180px;
  height: 180px;
  top: 42%;
  left: 48%;
  background: rgba(18, 184, 122, 0.28);
  animation-delay: -10s;
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(28px, -22px) scale(1.1); }
  66% { transform: translate(-20px, 16px) scale(0.94); }
}

.hero-beam {
  position: absolute;
  inset: -40% -20%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(18, 184, 122, 0.07) 48%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(18, 184, 122, 0.07) 52%,
    transparent 58%
  );
  animation: heroBeamSweep 7s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

@keyframes heroBeamSweep {
  0%, 100% { transform: translateX(-8%) rotate(0deg); opacity: 0.5; }
  50% { transform: translateX(8%) rotate(2deg); opacity: 1; }
}

@keyframes heroBgRevealNext {
  from { clip-path: inset(0 0 0 100%); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes heroBgRevealPrev {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

.hero-slide__mesh--live {
  animation: heroMeshShift 12s ease-in-out infinite;
}

@keyframes heroMeshShift {
  0%, 100% {
    background:
      radial-gradient(ellipse 70% 55% at 15% 85%, rgba(13, 155, 106, 0.28), transparent 55%),
      radial-gradient(ellipse 50% 40% at 85% 20%, rgba(19, 48, 86, 0.45), transparent 50%),
      linear-gradient(115deg, rgba(7, 21, 40, 0.88) 0%, rgba(7, 21, 40, 0.45) 42%, rgba(7, 21, 40, 0.72) 100%);
  }
  50% {
    background:
      radial-gradient(ellipse 65% 50% at 22% 78%, rgba(13, 155, 106, 0.34), transparent 55%),
      radial-gradient(ellipse 55% 45% at 78% 28%, rgba(19, 48, 86, 0.5), transparent 50%),
      linear-gradient(125deg, rgba(7, 21, 40, 0.86) 0%, rgba(7, 21, 40, 0.42) 42%, rgba(7, 21, 40, 0.74) 100%);
  }
}

.hero-grid--drift {
  animation: heroGridDrift 20s linear infinite;
}

@keyframes heroGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 64px 64px, 64px 64px; }
}

.hero-slide__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 85%, rgba(13, 155, 106, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(19, 48, 86, 0.45), transparent 50%),
    linear-gradient(115deg, rgba(7, 21, 40, 0.88) 0%, rgba(7, 21, 40, 0.45) 42%, rgba(7, 21, 40, 0.72) 100%);
  pointer-events: none;
}

.hero-slide__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 21, 40, 0.95) 0%, rgba(7, 21, 40, 0.25) 42%, transparent 70%),
    linear-gradient(to right, rgba(7, 21, 40, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

.hero-slider__viewport {
  position: relative;
  z-index: 2;
  width: 100%;
  height: min(94vh, 880px);
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.hero-slide.is-active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide.is-leaving {
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide__content {
  width: 100%;
  padding: 6.5rem 0 7.5rem;
}

@media (min-width: 1024px) {
  .hero-slide__content {
    padding: 7rem 0 8rem;
  }
}

.hero-slide__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}

@media (min-width: 1024px) {
  .hero-slide__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
  }
}

.hero-slide__copy > * {
  opacity: 0;
  transform: translateY(28px);
}

.hero-slide.is-active .hero-slide__copy > * {
  animation: heroStaggerIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide.is-active .hero-slide__copy > *:nth-child(1) { animation-delay: 0.06s; }
.hero-slide.is-active .hero-slide__copy > *:nth-child(2) { animation-delay: 0.16s; }
.hero-slide.is-active .hero-slide__copy > *:nth-child(3) { animation-delay: 0.26s; }
.hero-slide.is-active .hero-slide__copy > *:nth-child(4) { animation-delay: 0.36s; }
.hero-slide.is-active .hero-slide__copy > *:nth-child(5) { animation-delay: 0.46s; }

.hero-slide.is-leaving .hero-slide__copy > * {
  animation: heroStaggerOut 0.62s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.hero-slide.is-leaving.is-dir-next .hero-slide__copy > * {
  animation-name: heroStaggerOutLeft;
}

.hero-slide.is-leaving.is-dir-prev .hero-slide__copy > * {
  animation-name: heroStaggerOutRight;
}

.hero-slide__visual > * {
  opacity: 0;
  transform: translateY(24px);
}

.hero-slide.is-active .hero-slide__visual > * {
  animation: heroVisualIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide.is-active .hero-slide__visual > *:nth-child(1) { animation-delay: 0.22s; }
.hero-slide.is-active .hero-slide__visual > *:nth-child(2) { animation-delay: 0.38s; }

.hero-slide.is-leaving .hero-slide__visual > * {
  animation: heroVisualOut 0.58s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.hero-slide.is-leaving.is-dir-next .hero-slide__visual > * {
  animation-name: heroVisualOutLeft;
}

.hero-slide.is-leaving.is-dir-prev .hero-slide__visual > * {
  animation-name: heroVisualOutRight;
}

.hero-slide__aside > * {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
}

.hero-slide.is-active .hero-slide__aside > * {
  animation: heroStatIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide.is-active .hero-slide__aside > *:nth-child(1) { animation-delay: 0.35s; }
.hero-slide.is-active .hero-slide__aside > *:nth-child(2) { animation-delay: 0.45s; }
.hero-slide.is-active .hero-slide__aside > *:nth-child(3) { animation-delay: 0.55s; }

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

@keyframes heroStaggerOut {
  to {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes heroStaggerOutLeft {
  to {
    opacity: 0;
    transform: translateX(-36px);
    filter: blur(4px);
  }
}

@keyframes heroStaggerOutRight {
  to {
    opacity: 0;
    transform: translateX(36px);
    filter: blur(4px);
  }
}

@keyframes heroStatIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroKenBurns {
  from { transform: scale(1.02); }
  to { transform: scale(1.09); }
}

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

@keyframes heroVisualOut {
  to {
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
  }
}

@keyframes heroVisualOutLeft {
  to {
    opacity: 0;
    transform: translateX(-40px) scale(0.96);
    filter: blur(5px);
  }
}

@keyframes heroVisualOutRight {
  to {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
    filter: blur(5px);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  padding: 0.45rem 0.9rem 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero-eyebrow-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--accent-bright);
  box-shadow: 0 0 12px rgba(18, 184, 122, 0.8);
  animation: heroPulse 2.4s ease-out infinite;
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(18, 184, 122, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(18, 184, 122, 0); }
}

.hero-title {
  max-width: 14ch;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-title-accent {
  background: linear-gradient(135deg, #fff 0%, #12b87a 40%, #6ee7b7 60%, #fff 100%);
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: heroAccentShimmer 5s ease-in-out infinite;
}

@keyframes heroAccentShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-desc {
  margin-top: 1.35rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.35rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0 1.65rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.2s ease;
}

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

.hero-btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(13, 155, 106, 0.55);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-btn-primary:hover::after {
  transform: translateX(120%);
}

.hero-btn-primary {
  animation: heroBtnPulse 3.5s ease-in-out infinite;
}

@keyframes heroBtnPulse {
  0%, 100% { box-shadow: 0 12px 32px -8px rgba(13, 155, 106, 0.55); }
  50% { box-shadow: 0 16px 40px -6px rgba(13, 155, 106, 0.72); }
}

.hero-btn-primary:hover {
  box-shadow: 0 16px 40px -8px rgba(13, 155, 106, 0.65);
}

.hero-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  color: #fff;
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}

.hero-trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: rgba(13, 155, 106, 0.22);
  color: var(--accent-bright);
  font-size: 0.62rem;
  line-height: 1;
}

.hero-slide__visual {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .hero-slide__visual {
    display: flex;
  }
}

.hero-showcase {
  position: relative;
  padding: 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(18px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-showcase__img {
  animation: heroShowcaseFloat 6s ease-in-out infinite, heroShowcaseIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroShowcaseIn {
  from {
    opacity: 0;
    transform: scale(0.88) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes heroShowcaseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-showcase__glow {
  position: absolute;
  inset: 0.5rem;
  border-radius: 1.1rem;
  background: radial-gradient(circle at 50% 50%, rgba(13, 155, 106, 0.22), transparent 68%);
  pointer-events: none;
  animation: heroGlowPulse 3s ease-in-out infinite;
}

.hero-showcase__ring {
  position: absolute;
  inset: 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(18, 184, 122, 0.25);
  box-shadow: 0 0 40px rgba(13, 155, 106, 0.15);
  pointer-events: none;
  animation: heroRingSpin 14s linear infinite;
}

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

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

.hero-showcase__img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 0.85rem;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.hero-showcase__tag {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 21, 40, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero-slide__aside {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (min-width: 1024px) {
  .hero-slide__aside {
    display: grid;
  }
}

.hero-stat {
  padding: 0.85rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.hero-stat--accent {
  border-color: rgba(13, 155, 106, 0.35);
  background: rgba(13, 155, 106, 0.12);
}

.hero-stat__num {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.hero-stat__lbl {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-slider.is-entering .hero-slide.is-active .hero-slide__copy > * {
  animation: heroStaggerIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slider.is-entering .hero-slide.is-active .hero-slide__copy > *:nth-child(1) { animation-delay: 0.15s; }
.hero-slider.is-entering .hero-slide.is-active .hero-slide__copy > *:nth-child(2) { animation-delay: 0.28s; }
.hero-slider.is-entering .hero-slide.is-active .hero-slide__copy > *:nth-child(3) { animation-delay: 0.41s; }
.hero-slider.is-entering .hero-slide.is-active .hero-slide__copy > *:nth-child(4) { animation-delay: 0.54s; }
.hero-slider.is-entering .hero-slide.is-active .hero-slide__copy > *:nth-child(5) { animation-delay: 0.67s; }

.hero-slider.is-entering .hero-slide.is-active .hero-slide__visual > * {
  animation: heroVisualIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slider.is-entering .hero-slide.is-active .hero-slide__visual > *:nth-child(1) { animation-delay: 0.35s; }
.hero-slider.is-entering .hero-slide.is-active .hero-slide__visual > *:nth-child(2) { animation-delay: 0.52s; }

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

.hero-chrome {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}

.hero-slider.is-ready .hero-chrome {
  opacity: 1;
  animation: heroChromeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-slider.is-ready .hero-scroll {
  animation: heroChromeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.hero-chrome > * {
  pointer-events: auto;
}

.hero-counter {
  position: absolute;
  left: max(1rem, calc((100vw - 80rem) / 2 + 1rem));
  bottom: 2.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.45);
}

.hero-counter__current {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.hero-counter__current.is-tick {
  transform: translateY(-100%);
  opacity: 0;
}

.hero-counter__sep {
  font-size: 0.9rem;
  margin: 0 0.15rem;
}

.hero-counter__total {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 21, 40, 0.45);
  backdrop-filter: blur(16px);
}

.hero-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-dot {
  position: relative;
  min-width: 5.5rem;
  height: 2.35rem;
  padding: 0 0.75rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.25s ease;
}

.hero-dot__label {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease;
}

.hero-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hero-dot::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, rgba(13, 155, 106, 0.5), var(--accent-bright));
  border-radius: inherit;
  transition: width 0.08s linear;
}

.hero-dot.is-active::before {
  opacity: 1;
}

.hero-dot.is-active .hero-dot__label {
  color: #fff;
}

.hero-progress-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #6ee7b7, var(--accent));
  background-size: 200% 100%;
  animation: heroProgressShine 3s linear infinite;
}

@keyframes heroProgressShine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.hero-scroll {
  position: absolute;
  right: max(1rem, calc((100vw - 80rem) / 2 + 1rem));
  bottom: 2.35rem;
  z-index: 10;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease, transform 0.25s ease;
  opacity: 0;
}

.hero-scroll:hover {
  color: rgba(255, 255, 255, 0.85);
  transform: translateY(2px);
}

.hero-scroll__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll__line {
  position: relative;
  width: 1px;
  height: 2.75rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  overflow: hidden;
}

.hero-scroll__dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 999px;
  background: var(--accent-bright);
  box-shadow: 0 0 10px rgba(18, 184, 122, 0.8);
  animation: heroScrollDot 2s ease-in-out infinite;
}

@keyframes heroScrollDot {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 640px) {
  .hero-counter { display: none; }
  .hero-scroll { display: none; }
  .hero-dot { min-width: 2.5rem; padding: 0; }
  .hero-dot__label { display: none; }
  .hero-slide__content { padding-bottom: 6.5rem; }
}

/* —— Hero atmosphere (legacy / inner pages) —— */
.hero-plane {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13, 155, 106, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(19, 48, 86, 0.5), transparent 50%),
    linear-gradient(155deg, #071528 0%, #0b1f3a 42%, #133056 100%);
}

.hero-grid {
  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: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black, transparent);
}

.hero-sheen {
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(18, 184, 122, 0.08) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: sheenSweep 8s ease-in-out infinite;
}

@keyframes sheenSweep {
  0%,
  100% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
}

/* —— Reveal on scroll —— */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}

.section-bridge {
  position: relative;
}

.section-bridge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, rgba(7, 21, 40, 0.06), transparent);
  pointer-events: none;
}

/* —— Stats strip —— */
.stats-strip {
  position: relative;
  z-index: 3;
  margin-top: -1.75rem;
  padding-bottom: 0.5rem;
}

.stats-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .stats-strip__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(11, 31, 58, 0.06);
  background: #fff;
  box-shadow: 0 12px 32px -16px rgba(11, 31, 58, 0.14);
}

.stats-strip__num {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
}

.stats-strip__lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(11, 31, 58, 0.45);
}

/* —— Category cards —— */
.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.05);
  box-shadow: 0 4px 24px -8px rgba(11, 31, 58, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.cat-card:hover {
  box-shadow: 0 22px 44px -16px rgba(11, 31, 58, 0.18);
}

.cat-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface) 0%, #fff 100%);
}

.cat-card__media--tall {
  aspect-ratio: auto;
  flex: 1;
  min-height: 280px;
}

@media (min-width: 1024px) {
  .cat-card__media--tall {
    min-height: 100%;
  }
}

.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-card:hover .cat-card__media img {
  transform: scale(1.06);
}

.cat-card__count {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(7, 21, 40, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.cat-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.cat-card__body--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cat-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.cat-card__desc {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(11, 31, 58, 0.55);
}

.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.2s ease;
}

.cat-card__body--row .cat-card__link {
  margin-top: 0;
}

.cat-card:hover .cat-card__link {
  color: var(--accent-bright);
}

/* —— Product cards —— */
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.05);
  box-shadow: 0 4px 24px -8px rgba(11, 31, 58, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.product-card:hover {
  border-color: rgba(13, 155, 106, 0.2);
  box-shadow: 0 20px 40px -16px rgba(11, 31, 58, 0.16);
}

.product-card__media {
  aspect-ratio: 1;
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  border-top: 1px solid rgba(11, 31, 58, 0.05);
}

.product-card__cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card__title {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(11, 31, 58, 0.45);
  transition: color 0.2s ease;
}

.product-card:hover .product-card__cta {
  color: var(--accent);
}

/* —— About mosaic —— */
.about-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(140px, 1fr));
  gap: 0.85rem;
  min-height: 360px;
}

.about-mosaic__cell {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.06);
  background: #fff;
  box-shadow: 0 8px 28px -12px rgba(11, 31, 58, 0.14);
}

.about-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.85rem;
  background: linear-gradient(145deg, #fff 0%, var(--surface) 100%);
}

.about-mosaic__cell--main {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
}

.about-mosaic__cell:not(.about-mosaic__cell--main):nth-of-type(2) {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
}

.about-mosaic__cell:not(.about-mosaic__cell--main):nth-of-type(3) {
  grid-column: 9 / 13;
  grid-row: 2 / 3;
}

.about-mosaic__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 21, 40, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.about-mosaic__badge-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.about-mosaic__badge-lbl {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(11, 31, 58, 0.72);
}

.about-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.68rem;
  flex-shrink: 0;
}

/* —— Sectors —— */
.sector-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sector-chip {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(11, 31, 58, 0.72);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.sector-chip:hover {
  background: var(--accent-soft);
  border-color: rgba(13, 155, 106, 0.25);
  color: var(--navy);
  transform: translateY(-2px);
}

/* —— Why visual —— */
.why-visual {
  position: relative;
  background: var(--surface);
}

.why-visual__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 1.25rem;
}

.why-visual__cap {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(11, 31, 58, 0.45);
  background: #fff;
}

.advantage-item {
  padding: 1.35rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(11, 31, 58, 0.05);
  background: #fff;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.advantage-item:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 155, 106, 0.18);
  box-shadow: 0 16px 32px -16px rgba(11, 31, 58, 0.12);
}

/* —— CTA gallery —— */
.cta-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.cta-gallery__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.cta-gallery__img:hover {
  transform: scale(1.04) rotate(-1deg);
  background: rgba(255, 255, 255, 0.1);
}

.cta-gallery__img:nth-child(2) {
  transform: translateY(0.75rem);
}

.cta-gallery__img:nth-child(2):hover {
  transform: translateY(0.75rem) scale(1.04) rotate(1deg);
}

.cta-gallery__img:nth-child(3) {
  transform: translateY(-0.75rem);
}

.cta-gallery__img:nth-child(3):hover {
  transform: translateY(-0.75rem) scale(1.04) rotate(-1deg);
}

/* —— Bento cards —— */
.bento-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(13, 155, 106, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(11, 31, 58, 0.18);
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-card .card-arrow {
  transition: transform 0.3s ease;
}

.bento-card:hover .card-arrow {
  transform: translateX(4px);
}

/* —— Advantage icons —— */
.advantage-icon {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.advantage-item:hover .advantage-icon {
  transform: scale(1.08);
  background: var(--accent);
  color: #fff;
}

/* —— Form focus —— */
.form-field:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 155, 106, 0.15);
}

/* —— Mobile nav —— */
.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.is-open {
  max-height: 420px;
}

/* —— Catalog sidebar (mobile) —— */
@media (max-width: 1023px) {
  .catalog-sidebar {
    display: none;
  }

  .catalog-sidebar.is-mobile-open {
    display: block;
  }
}

/* —— Page hero (inner pages) —— */
.page-hero {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(13, 155, 106, 0.15), transparent),
    linear-gradient(145deg, #071528 0%, #0b1f3a 100%);
}

/* —— Catalog download —— */
.catalog-visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(13, 155, 106, 0.2), transparent 50%),
    linear-gradient(160deg, #0b1f3a, #133056);
}

/* —— Axo Digital signature —— */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.axo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  align-self: flex-end;
}

@media (min-width: 640px) {
  .axo-link {
    align-self: auto;
  }
}

.axo-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(248, 250, 252, 0.4);
  transition: color 0.25s;
}

.axo-link:hover .axo-label {
  color: rgba(248, 250, 252, 0.7);
}

.axo-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
}

@property --axo-shift {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}

.axo-word {
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  --axo-shift: 0px;
  animation: axoShine 3s linear infinite;
}

.axo-letter {
  display: inline-block;
  background-image: linear-gradient(
    90deg,
    #3ec8ff 0%,
    #5b6cff 16%,
    #8b3dff 32%,
    #d42d88 50%,
    #ff8c28 68%,
    #ffd24a 84%,
    #3ec8ff 100%
  );
  background-size: 12.5em 100%;
  background-repeat: repeat-x;
  background-position: calc(var(--i) * -0.62em + var(--axo-shift)) 0;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transform-origin: bottom center;
}

.axo-link:hover .axo-word {
  animation: axoShine 1.15s linear infinite;
}

.axo-link:hover .axo-letter {
  animation: axoBounce 0.62s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i) * 42ms);
}

.axo-sign-dot {
  height: 6px;
  width: 6px;
  border-radius: 999px;
  background: #d42d88;
  box-shadow: 0 0 0 0 rgba(212, 45, 136, 0.55);
  animation: axoPulse 2.2s ease-out infinite;
}

.axo-link:hover .axo-sign-dot {
  animation: axoPulse 0.7s ease-out infinite;
  background: #ffd24a;
}

.axo-sparks {
  pointer-events: none;
  position: absolute;
  inset: -8px -10px;
}

.axo-sparks i {
  position: absolute;
  height: 5px;
  width: 5px;
  border-radius: 999px;
  background: #3ec8ff;
  opacity: 0;
}

.axo-sparks i:nth-child(1) {
  left: 8%;
  top: 0;
}

.axo-sparks i:nth-child(2) {
  right: 12%;
  top: -2px;
  background: #d42d88;
}

.axo-sparks i:nth-child(3) {
  right: 38%;
  bottom: -4px;
  background: #ffd24a;
}

.axo-link:hover .axo-sparks i {
  animation: axoSpark 0.85s ease-out infinite;
}

.axo-link:hover .axo-sparks i:nth-child(2) {
  animation-delay: 0.12s;
}

.axo-link:hover .axo-sparks i:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes axoShine {
  from {
    --axo-shift: 0em;
  }
  to {
    --axo-shift: 12.5em;
  }
}

@keyframes axoPulse {
  0% {
    transform: scale(0.85);
    box-shadow: 0 0 0 0 rgba(212, 45, 136, 0.55);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(212, 45, 136, 0);
  }
  100% {
    transform: scale(0.85);
    box-shadow: 0 0 0 0 rgba(212, 45, 136, 0);
  }
}

@keyframes axoBounce {
  0% {
    transform: translateY(0) rotate(0);
  }
  35% {
    transform: translateY(-7px) rotate(-8deg);
  }
  65% {
    transform: translateY(1px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes axoSpark {
  0% {
    opacity: 0;
    transform: scale(0.4) translateY(4px);
  }
  35% {
    opacity: 1;
    transform: scale(1) translateY(-6px) rotate(18deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.3) translateY(-14px);
  }
}

/* —— Floating contact actions (left) —— */
.float-actions {
  position: fixed;
  left: 1rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 3.15rem;
  width: 3.15rem;
  padding: 0 0.85rem;
  overflow: hidden;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px -8px rgba(7, 21, 40, 0.35);
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.28s ease,
    justify-content 0.28s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
}

.float-btn svg {
  flex-shrink: 0;
}

.float-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  white-space: nowrap;
  transition: max-width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
}

.float-label-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.float-label-meta {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (hover: hover) and (pointer: fine) {
  .float-btn:hover,
  .float-btn:focus-visible {
    width: 11.5rem;
    justify-content: flex-start;
    gap: 0.55rem;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -8px rgba(7, 21, 40, 0.42);
  }

  .float-btn:hover .float-label,
  .float-btn:focus-visible .float-label {
    max-width: 8.5rem;
    opacity: 1;
  }
}

.float-btn-wa {
  background: #25d366;
}

.float-btn-wa:hover {
  background: #1ebe57;
}

.float-btn-call {
  background: #0d9b6a;
}

.float-btn-call:hover {
  background: #12b87a;
}

.float-btn-ig {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

@media (max-width: 640px) {
  .float-actions {
    left: 0.75rem;
    bottom: 0.85rem;
    gap: 0.55rem;
    opacity: 1;
    transform: none;
  }

  .float-btn {
    height: 3rem;
    width: 3rem;
    padding: 0;
  }

  .float-label {
    display: none;
  }
}

/* —— Site motion —— */
body {
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded {
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
  background: rgba(11, 31, 58, 0.04);
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), #6ee7b7);
  background-size: 200% 100%;
  animation: heroProgressShine 4s linear infinite;
  box-shadow: 0 0 12px rgba(13, 155, 106, 0.45);
  transition: width 0.12s linear;
}

.reveal:not([class*="reveal-delay-"]) {
  transition-delay: calc(var(--motion-i, 0) * 0.08s);
}

.reveal-left {
  transform: translateX(-36px) scale(0.985);
}

.reveal-left.is-visible {
  transform: translateX(0) scale(1);
}

.reveal-right {
  transform: translateX(36px) scale(0.985);
}

.reveal-right.is-visible {
  transform: translateX(0) scale(1);
}

.reveal-zoom {
  transform: scale(0.92);
}

.reveal-zoom.is-visible {
  transform: scale(1);
}

.motion-card,
.cat-card,
.product-card {
  transform: perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(var(--tilt-lift, 0));
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  will-change: transform;
}

.cat-card:hover,
.product-card:hover,
.motion-card:hover {
  box-shadow: 0 24px 48px -18px rgba(11, 31, 58, 0.2);
}

.cat-card::after,
.product-card::after,
.motion-card.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  border-radius: inherit;
}

.cat-card,
.product-card {
  position: relative;
  overflow: hidden;
}

.cat-card:hover::after,
.product-card:hover::after,
.motion-card.bento-card:hover::after {
  transform: translateX(120%);
}

.product-card.is-visible .product-card__media img,
.cat-card.is-visible .cat-card__media img {
  animation: cardImgFloat 5s ease-in-out infinite;
}

@keyframes cardImgFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-4px); }
}

.sector-chip.is-visible {
  animation: chipPop 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--motion-i, 0) * 0.06s);
}

@keyframes chipPop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sector-chip:hover {
  animation: none;
  transform: translateY(-3px) scale(1.02);
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero__orbs span {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
  animation: orbDrift 14s ease-in-out infinite;
}

.page-hero__orbs span:nth-child(1) {
  width: 280px;
  height: 280px;
  top: -80px;
  right: 10%;
  background: rgba(13, 155, 106, 0.35);
}

.page-hero__orbs span:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: 15%;
  background: rgba(19, 48, 86, 0.55);
  animation-delay: -4s;
}

.page-hero__orbs span:nth-child(3) {
  width: 140px;
  height: 140px;
  top: 40%;
  left: 55%;
  background: rgba(18, 184, 122, 0.25);
  animation-delay: -8s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.08); }
  66% { transform: translate(-16px, 12px) scale(0.95); }
}

.footer-cta {
  position: relative;
  overflow: hidden;
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(18, 184, 122, 0.06) 50%,
    transparent 60%
  );
  background-size: 220% 100%;
  animation: sheenSweep 10s ease-in-out infinite;
  pointer-events: none;
}

.float-actions {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-actions.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.float-btn {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.08);
}

.card-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

a:hover .card-arrow {
  transform: translateX(4px);
}

.motion-magnetic {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header {
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-loaded .site-header {
  animation: headerDrop 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes headerDrop {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.cta-gallery__img {
  animation: ctaFloat 7s ease-in-out infinite;
}

.cta-gallery__img:nth-child(2) { animation-delay: -1.5s; }
.cta-gallery__img:nth-child(3) { animation-delay: -3s; }
.cta-gallery__img:nth-child(4) { animation-delay: -4.5s; }

@keyframes ctaFloat {
  0%, 100% { transform: translateY(var(--cta-y, 0)) rotate(var(--cta-r, 0deg)); }
  50% { transform: translateY(calc(var(--cta-y, 0px) - 6px)) rotate(var(--cta-r, 0deg)); }
}

.cta-gallery__img:nth-child(2) { --cta-y: 0.75rem; --cta-r: 1deg; }
.cta-gallery__img:nth-child(3) { --cta-y: -0.75rem; --cta-r: -1deg; }

.advantage-icon {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.advantage-item:hover .advantage-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(13, 155, 106, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  body {
    opacity: 1;
    transition: none;
  }

  .scroll-progress,
  .page-hero__orbs {
    display: none;
  }

  .reveal,
  .sector-chip {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .float-actions {
    opacity: 1;
    transform: none;
  }

  .motion-card,
  .cat-card,
  .product-card {
    transform: none !important;
  }

  .hero-slider__media .hero-slide__bg.is-active {
    animation: none;
  }

  .hero-showcase {
    animation: none;
  }

  .hero-orbs,
  .hero-beam,
  .hero-grid--drift,
  .hero-slide__mesh--live {
    display: none;
  }

  .hero-title-accent,
  .hero-btn-primary {
    animation: none !important;
  }

  .hero-showcase__ring,
  .hero-showcase__glow {
    animation: none !important;
  }

  .hero-chrome,
  .hero-scroll {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .hero-slider.is-dir-next .hero-slide__bg.is-active,
  .hero-slider.is-dir-prev .hero-slide__bg.is-active {
    animation: none;
    clip-path: none;
  }

  .hero-slide.is-active .hero-slide__copy > *,
  .hero-slide.is-active .hero-slide__aside > *,
  .hero-slide.is-active .hero-slide__visual > * {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .hero-progress__bar {
    animation: none;
  }

  .reveal,
  .bento-card,
  .hero-sheen,
  .axo-word,
  .axo-sign-dot {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
