:root {
  --nexa-bg: #ffffff;
  --nexa-bg-glow: #ffb45a;
  --nexa-ink: #111111;
  --nexa-bar: #141414;
  --nexa-bar-soft: #1c1c1c;
  --nexa-accent: #fe8e05;
  --nexa-accent-hover: #ff9b24;
  --nexa-text: #ffffff;
  --nexa-muted: #c8c8c8;
  --nexa-radius-pill: 999px;
  --nexa-page-width: 1440px;
  --nexa-font: "Inter", sans-serif;
  --nexa-display: "Inter", sans-serif;
  --nexa-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--nexa-font);
  color: var(--nexa-ink);
  background: var(--nexa-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.nexa-page {
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

.nexa-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: clamp(520px, 62.36vw, 898px);
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  /* Keep Content.png for hero; hide it in the header band */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 90px,
    #000 180px,
    #000 72%,
    rgba(0, 0, 0, 0.55) 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 90px,
    #000 180px,
    #000 72%,
    rgba(0, 0, 0, 0.55) 88%,
    transparent 100%
  );
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

/* Header-only glow transition (matches SS) — not the Content.png plate */
.nexa-header-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 75% 70% at 50% -15%,
      rgba(254, 142, 5, 0.36),
      transparent 70%
    ),
    radial-gradient(
      ellipse 45% 55% at 78% 0%,
      rgba(255, 180, 90, 0.2),
      transparent 65%
    );
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.45) 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.45) 72%,
    transparent 100%
  );
}

.nexa-header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 2.5rem), var(--nexa-page-width));
  max-width: var(--nexa-page-width);
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
}

.admin-bar .nexa-header {
  top: calc(32px + 1.25rem);
}

.nexa-header-spacer {
  width: 100%;
  pointer-events: none;
}

.nexa-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 30px;
  background: var(--nexa-bar);
  border-radius: var(--nexa-radius-pill);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  animation: nexa-header-in 0.7s var(--nexa-ease) both;
}

@keyframes nexa-header-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */

.nexa-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
  color: var(--nexa-text);
  line-height: 1;
}

.nexa-logo .custom-logo-link,
.nexa-logo .custom-logo {
  display: block;
  height: 40px;
  width: auto;
}

.nexa-logo__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--nexa-text);
}

.nexa-logo__nexa {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  line-height: 1;
}

.nexa-logo__n {
  display: block;
  width: 22px;
  height: auto;
  margin-bottom: 1px;
  flex-shrink: 0;
}

.nexa-logo__rest {
  font-family: var(--nexa-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--nexa-text);
}

.nexa-logo__tag {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1;
  color: var(--nexa-text);
  text-transform: uppercase;
  padding-left: 0.05rem;
}

/* Navigation */

.nexa-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nexa-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nexa-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--nexa-muted);
  transition: color 0.25s var(--nexa-ease);
}

.nexa-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--nexa-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--nexa-ease);
}

.nexa-nav__link:hover,
.nexa-nav__item.is-active .nexa-nav__link,
.nexa-nav__item.current-menu-item .nexa-nav__link {
  color: var(--nexa-accent);
}

.nexa-nav__item.is-active .nexa-nav__link::after,
.nexa-nav__item.current-menu-item .nexa-nav__link::after,
.nexa-nav__link:hover::after {
  transform: scaleX(1);
}

/* CTA */

.nexa-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.7rem 1.15rem;
  border-radius: var(--nexa-radius-pill);
  background: var(--nexa-accent);
  color: var(--nexa-bar);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  transition:
    background 0.25s var(--nexa-ease),
    transform 0.25s var(--nexa-ease),
    box-shadow 0.25s var(--nexa-ease);
}

.nexa-cta:hover {
  background: var(--nexa-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.35);
}

.nexa-cta:hover .nexa-cta__arrow {
  transform: translateX(3px);
}

.nexa-cta__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--nexa-ease);
}

/* Mobile toggle */

.nexa-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  margin-right: 0.35rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nexa-nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--nexa-text);
  border-radius: 2px;
  transition:
    transform 0.25s var(--nexa-ease),
    opacity 0.2s ease;
}

.nexa-header.is-open .nexa-nav-toggle__bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nexa-header.is-open .nexa-nav-toggle__bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* -------------------------------------------------------------------------- */
/* Hero / content                                                             */
/* -------------------------------------------------------------------------- */

.nexa-main {
  position: relative;
  z-index: 1;
  width: 100%;
}

.nexa-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 1.5rem 42px;
  text-align: center;
}

.nexa-hero__content {
  max-width: 920px;
  width: 100%;
  animation: nexa-fade-up 0.85s var(--nexa-ease) 0.15s both;
}

@keyframes nexa-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nexa-hero__title {
  margin: 0 0 24px;
  font-family: var(--nexa-font);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--nexa-ink);
}

.nexa-hero__accent {
  color: var(--nexa-accent);
}

.nexa-hero__subtitle {
  margin: 0 auto 24px;
  max-width: 850px;
  font-family: var(--nexa-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #5c5c5c;
}

.nexa-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.nexa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 16px 20px;
  border-radius: var(--nexa-radius-pill);
  font-family: var(--nexa-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition:
    background 0.25s var(--nexa-ease),
    border-color 0.25s var(--nexa-ease),
    transform 0.25s var(--nexa-ease),
    box-shadow 0.25s var(--nexa-ease);
}

.nexa-btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--nexa-ease);
}

.nexa-btn:hover .nexa-btn__arrow {
  transform: translateX(3px);
}

.nexa-btn--ghost {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  color: var(--nexa-ink);
}

.nexa-btn--ghost:hover {
  border-color: #bdbdbd;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.nexa-btn--primary {
  background: var(--nexa-accent);
  border: 1px solid var(--nexa-accent);
  color: var(--nexa-ink);
}

.nexa-btn--primary:hover {
  background: var(--nexa-accent-hover);
  border-color: var(--nexa-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.35);
}

.nexa-hero__media {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 80px 0 0;
  padding: 0;
  animation: nexa-fade-up 0.95s var(--nexa-ease) 0.28s both;
}

.nexa-hero__media::before {
  content: "";
  position: absolute;
  inset: 12% 8% -4%;
  z-index: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 138, 0, 0.22),
    transparent 70%
  );
  filter: blur(8px);
  pointer-events: none;
}

.nexa-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
}

.nexa-cta--hero {
  margin-inline: auto;
}

/* -------------------------------------------------------------------------- */
/* Clients marquee                                                            */
/* -------------------------------------------------------------------------- */

.nexa-clients {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  padding: 2.75rem 0 3.5rem;
  background: transparent;
}

.nexa-clients__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.nexa-clients__track {
  display: flex;
  width: max-content;
  animation: nexa-clients-marquee 32s linear infinite;
}

.nexa-clients__viewport:hover .nexa-clients__track {
  animation-play-state: paused;
}

.nexa-clients__list {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
  margin: 0;
  padding: 0 2.75rem;
  list-style: none;
  flex-shrink: 0;
}

.nexa-clients__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nexa-clients__logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.25s var(--nexa-ease);
}

.nexa-clients__item:hover .nexa-clients__logo {
  opacity: 0.85;
}

@keyframes nexa-clients-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nexa-clients__track {
    animation: none;
  }

  .nexa-clients__viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .nexa-clients__track {
    width: 100%;
    justify-content: center;
  }

  .nexa-clients__list[aria-hidden="true"] {
    display: none;
  }
}

/* -------------------------------------------------------------------------- */
/* About                                                                      */
/* -------------------------------------------------------------------------- */

.nexa-about {
  position: relative;
  z-index: 1;
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
  width: 100%;
}

.nexa-about__panel {
  background: #f4f4f5;
  border-radius: 28px;
  padding: clamp(2rem, 4.5vw, 3.5rem) clamp(1.5rem, 4vw, 3.25rem);
}

.nexa-about__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.75rem);
  align-items: center;
}

.nexa-about__eyebrow {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #a0a0a0;
}

.nexa-about__title {
  margin: 0 0 8px;
  max-width: 14ch;
  font-family: var(--nexa-font);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #111111;
}

.nexa-about__body {
  display: grid;
  gap: 1.1rem;
  max-width: 38rem;
}

.nexa-about__body p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  color: #7a7a7a;
}

.nexa-about__media {
  margin: 0;
  background: #ffffff;
  border-radius: 22px;
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.nexa-about__media img {
  display: block;
  width: 100%;
  height: auto;
}

.nexa-about__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(2.25rem, 4vw, 3.25rem) 0 0;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  list-style: none;
}

.nexa-about__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.25rem 40px;
  text-align: center;
}

.nexa-about__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  right: 0;
  width: 1px;
  background: #d9d9d9;
}

.nexa-about__stat-value {
  font-family: var(--nexa-font);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fe8e05;
}

.nexa-about__stat-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: #3f3f3f;
}

@media (max-width: 900px) {
  .nexa-about__top {
    grid-template-columns: 1fr;
  }

  .nexa-about__title {
    max-width: none;
  }

  .nexa-about__media {
    max-width: 480px;
    margin-inline: auto;
  }

  .nexa-about__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 0;
  }

  .nexa-about__stat:nth-child(2n)::after {
    display: none;
  }

  .nexa-about__stat:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: -0.875rem;
    height: 1px;
    background: #d9d9d9;
  }
}

@media (max-width: 520px) {
  .nexa-about {
    padding: 0.5rem 1rem 3rem;
  }

  .nexa-about__panel {
    border-radius: 22px;
    padding: 1.5rem 1.25rem;
  }

  .nexa-about__stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nexa-about__stat {
    padding: 1.1rem 0;
  }

  .nexa-about__stat::after,
  .nexa-about__stat::before {
    display: none;
  }

  .nexa-about__stat:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
  }
}

/* -------------------------------------------------------------------------- */
/* Starting point                                                             */
/* -------------------------------------------------------------------------- */

.nexa-start {
  position: relative;
  z-index: 1;
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5.5rem;
  width: 100%;
  background-color: #fff;
}

.nexa-start__inner {
  width: 100%;
  max-width: 100%;
}

.nexa-start__eyebrow {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9a9a9a;
}

.nexa-start__title {
  margin: 0 0 48px;
  max-width: 16ch;
  font-family: var(--nexa-font);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--nexa-ink);
}

.nexa-start__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.35rem;
  width: 100%;
}

.nexa-start__card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  min-height: 88px;
  padding: 32px;
  border: 1px solid #e4e4e7;
  border-radius: 24px;
  background: #ffffff;
  color: var(--nexa-ink);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.25s var(--nexa-ease),
    box-shadow 0.25s var(--nexa-ease),
    background 0.25s var(--nexa-ease);
}

.nexa-start__card:hover,
.nexa-start__card:focus-visible {
  border-color: var(--nexa-accent);
  box-shadow: 0 0 0 1px var(--nexa-accent);
  outline: none;
}

.nexa-start__card.is-active {
  border-color: var(--nexa-accent);
  box-shadow: 0 0 0 1px var(--nexa-accent);
}

.nexa-start__card.is-active:hover,
.nexa-start__card.is-active:focus-visible {
  border-color: var(--nexa-accent);
  box-shadow: 0 0 0 1px var(--nexa-accent);
}

.nexa-start__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--nexa-accent);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    background 0.25s var(--nexa-ease),
    color 0.25s var(--nexa-ease);
}


.nexa-start__label {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 500;
  line-height: 1.35;
}

.nexa-start__hint {
  margin: 0 0 1.65rem;
  font-size: 16px;
  line-height: 1.5;
  color: #8a8a8a;
}

.nexa-start__cta {
  display: inline-flex;
}

@media (max-width: 700px) {
  .nexa-start__grid {
    grid-template-columns: 1fr;
  }

  .nexa-start__title {
    max-width: none;
    margin-bottom: 1.75rem;
  }

  .nexa-start__card {
    min-height: 76px;
    padding: 1.1rem 1.2rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Core services                                                              */
/* -------------------------------------------------------------------------- */

.nexa-services {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #111111;
  padding: 4.5rem 0 5rem;
  color: #ffffff;
}

.nexa-services__inner {
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nexa-services__header {
  max-width: 720px;
  margin-bottom: 64px;
}

.nexa-services__eyebrow {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9a9a9a;
}

.nexa-services__title {
  margin: 0 0 24px;
  font-family: var(--nexa-font);
  font-size: 56px;
  font-weight: 500;
  max-width: 14ch;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
}

.nexa-services__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #9a9a9a;
}

.nexa-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.nexa-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 350px;
  height: 450px;
  padding: 32px;
  border-radius: 48px;
  background: #18181b;
  overflow: hidden;
}

.nexa-service-card__num {
  display: block;
  margin-bottom: 1.35rem;
  font-size: 18px;
  font-weight: 500;
  color: #7a7a7a;
}

.nexa-service-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: #2a2a2a;
}

.nexa-service-card__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.nexa-service-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-family: var(--nexa-font);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ffffff;
}

.nexa-service-card__desc {
  position: relative;
  z-index: 1;
  margin: 0 0 1.5rem;
  flex: 1;
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
}

.nexa-service-card__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--nexa-accent);
  transition: gap 0.25s var(--nexa-ease);
}

.nexa-service-card__cta:hover {
  gap: 0.65rem;
}

.nexa-service-card__arrow {
  width: 14px;
  height: 14px;
  display: block;
}

.nexa-service-card__watermark {
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 50%;
  max-width: 80px;
  height: auto;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  /* Icons already include low alpha — show as designed */
  filter: none;
  z-index: 0;
}

@media (max-width: 1100px) {
  .nexa-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .nexa-services {
    padding: 3.25rem 0 3.75rem;
  }

  .nexa-services__inner {
    padding: 0 1rem;
  }

  .nexa-services__grid {
    grid-template-columns: 1fr;
  }

  .nexa-services__header {
    margin-bottom: 2rem;
  }

  .nexa-service-card {
    height: auto;
    min-height: 450px;
  }
}

/* -------------------------------------------------------------------------- */
/* Process                                                                    */
/* -------------------------------------------------------------------------- */

.nexa-process {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #ffffff;
  padding: 5rem 0 5.5rem;
}

.nexa-process__inner {
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nexa-process__header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.nexa-process__eyebrow {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9a9a9a;
}

.nexa-process__title {
  margin: 0 auto 24px;
  font-family: var(--nexa-font);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--nexa-ink);
  max-width: 14ch;
}

.nexa-process__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #6b6b6b;
}

.nexa-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.nexa-process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

.nexa-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 1px;
  background: #9F9FA9;
  pointer-events: none;
}

.nexa-process__step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 24px;
  right: calc(-50% + 32px);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #9F9FA9;
  z-index: 1;
  pointer-events: none;
}

.nexa-process__icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #fff3e6;
}

.nexa-process__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.nexa-process__step-title {
  margin: 0 0 16px;
  font-family: var(--nexa-font);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--nexa-ink);
  max-width: 260px;
}

.nexa-process__step-desc {
  margin: 0;
  max-width: 250px;
  font-size: 16px;
  line-height: 1.55;
  color: #6b6b6b;
}

@media (max-width: 900px) {
  .nexa-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
  }

  .nexa-process__step:nth-child(2n)::after,
  .nexa-process__step:nth-child(2n)::before {
    display: none;
  }

  .nexa-process__step:nth-child(2)::after,
  .nexa-process__step:nth-child(2)::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .nexa-process {
    padding: 3.5rem 0 4rem;
  }

  .nexa-process__inner {
    padding: 0 1rem;
  }

  .nexa-process__header {
    margin-bottom: 2.5rem;
  }

  .nexa-process__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nexa-process__step::after,
  .nexa-process__step::before {
    display: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Growth solutions                                                           */
/* -------------------------------------------------------------------------- */

.nexa-growth {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #f5f5f5;
  padding: 5rem 0 5.5rem;
}

.nexa-growth__inner {
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nexa-growth__header {
  max-width: 720px;
  margin: 0 0 48px;
}

.nexa-growth__eyebrow {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9a9a9a;
}

.nexa-growth__title {
  margin: 0 0 24px;
  font-family: var(--nexa-font);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--nexa-ink);
}

.nexa-growth__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #6b6b6b;
}

.nexa-growth__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.nexa-growth__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.nexa-growth__media {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #e8e8e8;
}

.nexa-growth__media img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
}

.nexa-growth__label {
  margin: 0;
  font-family: var(--nexa-font);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--nexa-ink);
  text-align: center;
}

@media (max-width: 900px) {
  .nexa-growth__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }

  .nexa-growth__media img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .nexa-growth {
    padding: 3.5rem 0 4rem;
  }

  .nexa-growth__inner {
    padding: 0 1rem;
  }

  .nexa-growth__header {
    margin-bottom: 2rem;
  }

  .nexa-growth__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .nexa-growth__media img {
    height: 340px;
  }
}

/* -------------------------------------------------------------------------- */
/* Why us                                                                     */
/* -------------------------------------------------------------------------- */

.nexa-why {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #ffffff;
  padding: 5rem 0;
}

.nexa-why__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nexa-why__eyebrow {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9a9a9a;
}

.nexa-why__title {
  margin: 0 0 24px;
  max-width: 18ch;
  font-family: var(--nexa-font);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--nexa-ink);
}

.nexa-why__list {
  display: grid;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nexa-why__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nexa-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  font-size: 1.25rem;
  line-height: 1;
}

.nexa-why__text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #5c5c5c;
}

.nexa-why__media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #f3f3f3;
}

.nexa-why__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 900px) {
  .nexa-why__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .nexa-why__title {
    max-width: none;
  }

  .nexa-why__media {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .nexa-why {
    padding: 3.5rem 0;
  }

  .nexa-why__inner {
    padding: 0 1rem;
  }

  .nexa-why__media {
    border-radius: 18px;
  }
}

/* -------------------------------------------------------------------------- */
/* Our work                                                                   */
/* -------------------------------------------------------------------------- */

.nexa-work {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #f5f5f5;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
}

.nexa-work__inner {
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nexa-work__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 48px;
}

.nexa-work__header {
  max-width: 720px;
}

.nexa-work__eyebrow {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.nexa-work__title {
  margin: 0 0 24px;
  font-family: var(--nexa-font);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--nexa-ink);
}

.nexa-work__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #6b6b6b;
}

.nexa-work__nav {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nexa-work__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition:
    background 0.25s var(--nexa-ease),
    opacity 0.25s var(--nexa-ease),
    transform 0.25s var(--nexa-ease);
}

.nexa-work__btn svg {
  display: block;
  flex-shrink: 0;
}

.nexa-work__btn--prev path {
  stroke: #111111;
}

.nexa-work__btn--next {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

.nexa-work__btn--next path {
  stroke: #ffffff;
}

.nexa-work__btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.nexa-work__btn--prev:hover:not(:disabled) {
  background: #f3f3f3;
}

.nexa-work__btn--next:hover:not(:disabled) {
  background: #000000;
}

.nexa-work__btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.nexa-work__viewport {
  overflow: hidden;
  width: 100%;
}

.nexa-work__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s var(--nexa-ease);
  will-change: transform;
}

.nexa-work__card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
}

.nexa-work__media {
  margin: 0 0 1.1rem;
  overflow: hidden;
  border-radius: 16px;
  background: #e8e8e8;
}

.nexa-work__media img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.nexa-work__card-title {
  margin: 0 0 0.35rem;
  font-family: var(--nexa-font);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--nexa-ink);
}

.nexa-work__card-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #6b6b6b;
}

@media (max-width: 900px) {
  .nexa-work__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .nexa-work__card {
    flex-basis: calc((100% - 1.25rem) / 2);
  }

  .nexa-work__media img {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .nexa-work {
    padding: 3.5rem 0 4rem;
  }

  .nexa-work__inner {
    padding: 0 1rem;
  }

  .nexa-work__card {
    flex-basis: 100%;
  }

  .nexa-work__media img {
    height: 220px;
  }
}

/* -------------------------------------------------------------------------- */
/* Testimonials                                                               */
/* -------------------------------------------------------------------------- */

.nexa-testimonials {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  padding: 5rem 0 5.5rem;
}

.nexa-testimonials__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nexa-testimonials__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 0.5rem 0;
}

.nexa-testimonials__eyebrow {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.nexa-testimonials__title {
  margin: 0 0 24px;
  max-width: 16ch;
  font-family: var(--nexa-font);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--nexa-ink);
}

.nexa-testimonials__intro {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  color: #6b6b6b;
}

.nexa-testimonials__nav {
  display: flex;
  gap: 0.65rem;
}

.nexa-testimonials__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  transition:
    background 0.25s var(--nexa-ease),
    border-color 0.25s var(--nexa-ease),
    transform 0.25s var(--nexa-ease);
}

.nexa-testimonials__btn svg {
  display: block;
}

.nexa-testimonials__btn path {
  stroke: #111111;
}

.nexa-testimonials__btn:hover:not(:disabled) {
  border-color: #111111;
  transform: translateY(-1px);
}

.nexa-testimonials__btn:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.nexa-testimonials__slider {
  min-width: 0;
  overflow: hidden;
  width: 100%;
}

.nexa-testimonials__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.nexa-testimonials__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  gap: 32px;
  padding: 48px;
  border-radius: 28px;
  background: #fafafa;
  box-sizing: border-box;
}

.nexa-testimonials__quote {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}

.nexa-testimonials__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: auto;
}

.nexa-testimonials__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.nexa-testimonials__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff3e6;
  color: var(--nexa-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nexa-testimonials__meta {
  min-width: 0;
}

.nexa-testimonials__name {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--nexa-ink);
}

.nexa-testimonials__role {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #8a8a8a;
}

.nexa-testimonials__logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
}

@media (max-width: 900px) {
  .nexa-testimonials__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nexa-testimonials__title {
    max-width: none;
  }

  .nexa-testimonials__intro {
    max-width: none;
  }

  .nexa-testimonials__card {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .nexa-testimonials {
    padding: 3.5rem 0 4rem;
  }

  .nexa-testimonials__inner {
    padding: 0 1rem;
  }

  .nexa-testimonials__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .nexa-testimonials__logo {
    align-self: flex-end;
  }
}

/* -------------------------------------------------------------------------- */
/* Contact CTA                                                                */
/* -------------------------------------------------------------------------- */

.nexa-contact {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #f7f7f7;
  padding: 56px 0;
}

.nexa-contact__inner {
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nexa-contact__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  overflow: hidden;
  min-height: 379px;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.75rem, 4vw, 3.5rem);
  border-radius: 32px;
  background: #111111;
  color: #ffffff;
}

.nexa-contact__copy {
  position: relative;
  z-index: 1;
}

.nexa-contact__eyebrow {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9a9a9a;
}

.nexa-contact__title {
  margin: 0 0 24px;
  font-family: var(--nexa-font);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
}

.nexa-contact__text {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.65;
  color: #c8c8c8;
}

.nexa-contact__cta {
  display: inline-flex;
}

.nexa-contact__visual {
  position: absolute;
  right: -2%;
  bottom: -18%;
  width: min(48%, 420px);
  pointer-events: none;
  user-select: none;
}

.nexa-contact__visual img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .nexa-contact__panel {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 10rem;
  }

  .nexa-contact__visual {
    width: min(70%, 320px);
    right: -4%;
    bottom: -12%;
  }
}

@media (max-width: 600px) {
  .nexa-contact {
    padding: 0.5rem 0 3.5rem;
  }

  .nexa-contact__inner {
    padding: 0 1rem;
  }

  .nexa-contact__panel {
    border-radius: 22px;
    padding: 1.75rem 1.35rem 8.5rem;
  }

  .nexa-contact__visual {
    width: 70%;
  }
}

/* -------------------------------------------------------------------------- */
/* Connect form                                                               */
/* -------------------------------------------------------------------------- */

.nexa-connect {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #ffffff;
  background-image: var(--nexa-connect-bg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.nexa-connect__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nexa-connect__eyebrow {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.nexa-connect__title {
  margin: 0 0 24px;
  font-family: var(--nexa-font);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--nexa-ink);
}

.nexa-connect__text {
  margin: 0;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.65;
  color: #6b6b6b;
}

.nexa-connect__form-wrap {
  position: relative;
}

.nexa-connect__form {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.nexa-connect__form-title {
  margin: 0 0 32px;
  font-family: var(--nexa-font);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--nexa-ink);
}

.nexa-connect__status {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.nexa-connect__status.is-success {
  background: #eaf7ee;
  color: #1d6b3a;
}

.nexa-connect__status.is-error {
  background: #fdeeee;
  color: #9b1c1c;
}

.nexa-connect__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.nexa-connect__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  margin-bottom: 1.25rem;
}

.nexa-connect__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.nexa-connect__field--full {
  grid-column: 1 / -1;
}

.nexa-connect__field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--nexa-ink);
}

.nexa-connect__field label span {
  color: var(--nexa-accent);
}

.nexa-connect__field input,
.nexa-connect__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  color: var(--nexa-ink);
  font-family: var(--nexa-font);
  font-size: 0.95rem;
  line-height: 1.4;
  outline: none;
  transition:
    border-color 0.2s var(--nexa-ease),
    box-shadow 0.2s var(--nexa-ease);
  box-sizing: border-box;
}

.nexa-connect__field textarea {
  resize: vertical;
  min-height: 130px;
}

.nexa-connect__field input::placeholder,
.nexa-connect__field textarea::placeholder {
  color: #a8a8a8;
}

.nexa-connect__field input:focus,
.nexa-connect__field textarea:focus {
  border-color: var(--nexa-accent);
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.15);
}

.nexa-connect__phone {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  transition:
    border-color 0.2s var(--nexa-ease),
    box-shadow 0.2s var(--nexa-ease);
}

.nexa-connect__phone:focus-within {
  border-color: var(--nexa-accent);
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.15);
}

.nexa-connect__phone-code {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding-right: 0.65rem;
  border-right: 1px solid #e6e6e6;
  font-size: 0.92rem;
  font-weight: 500;
  color: #444444;
}

.nexa-connect__phone input {
  border: 0;
  padding: 0.3rem 0;
  box-shadow: none;
}

.nexa-connect__phone input:focus {
  border: 0;
  box-shadow: none;
}

.nexa-connect__submit {
  display: block;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-radius: 12px;
  background: var(--nexa-accent);
  color: var(--nexa-ink);
  font-family: var(--nexa-font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s var(--nexa-ease),
    transform 0.25s var(--nexa-ease);
}

.nexa-connect__submit:hover {
  background: var(--nexa-accent-hover);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .nexa-connect__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nexa-connect__text {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .nexa-connect {
    padding: 3.25rem 0 4rem;
  }

  .nexa-connect__inner {
    padding: 0 1rem;
  }

  .nexa-connect__grid {
    grid-template-columns: 1fr;
  }

  .nexa-connect__form {
    padding: 1.25rem;
  }
}

.nexa-content {
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  width: 100%;
}

.nexa-article {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.nexa-article__title {
  margin: 0 0 0.5rem;
  font-family: var(--nexa-font);
  font-size: 1.5rem;
}

.nexa-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #141414;
  color: #ffffff;
  padding: 4rem 0 0;
}

.nexa-footer__inner {
  max-width: var(--nexa-page-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.nexa-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(3rem, 6vw, 6rem);
  row-gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
}

.nexa-footer__aside {
  display: flex;
  align-items: flex-start;
  gap: clamp(2.5rem, 4vw, 4rem);
}

.nexa-footer__logo {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.nexa-footer__logo img {
  display: block;
  width: auto;
  height: 48px;
}

.nexa-footer__about {
  font-size: 18px;
  line-height: 1.65;
  color: #d6d6d6;
  max-width: 665px;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 20px;
}

.nexa-footer__contacts {
  display: grid;
  gap: 1rem;
  padding-top: 1.5rem;
}

.nexa-footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: inherit;
}

.nexa-footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #1f1f1f;
}

.nexa-footer__contact-label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  color: #d4d4d8;
}

.nexa-footer__contact-value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}

.nexa-footer__heading {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nexa-accent);
}

.nexa-footer__menu {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nexa-footer__menu a {
  color: #ffffff;
  font-size: 14px;
  transition: color 0.2s var(--nexa-ease);
}

.nexa-footer__menu a:hover {
  color: var(--nexa-accent);
}

.nexa-footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nexa-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--nexa-accent);
  transition:
    background 0.2s var(--nexa-ease),
    transform 0.2s var(--nexa-ease);
}

.nexa-footer__social-link:hover {
  background: var(--nexa-accent-hover);
  transform: translateY(-2px);
}

.nexa-footer__bottom {
  padding: 1.35rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.nexa-footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #9a9a9a;
}

.nexa-footer__mark {
  display: block;
  width: 100%;
  line-height: 0;
  padding-bottom: 0.5rem;
}

.nexa-footer__mark img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .nexa-footer__grid {
    grid-template-columns: 1fr;
  }

  .nexa-footer__aside {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .nexa-footer {
    padding-top: 3rem;
  }

  .nexa-footer__inner {
    padding: 0 1rem;
  }

  .nexa-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-bottom: 2.25rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .nexa-header {
    top: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    width: auto;
    max-width: none;
    transform: none;
  }

  .admin-bar .nexa-header {
    top: calc(46px + 0.85rem);
  }

  .nexa-header__inner {
    flex-wrap: wrap;
    border-radius: 28px;
    gap: 1rem;
    padding: 0.65rem 0.65rem 0.65rem 1.1rem;
  }

  .nexa-nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .nexa-cta {
    order: 3;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .nexa-nav {
    order: 4;
    flex: 1 1 100%;
    display: none;
    padding: 0.5rem 0.75rem 0.85rem;
  }

  .nexa-header.is-open .nexa-nav {
    display: block;
  }

  .nexa-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nexa-nav__link {
    display: block;
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .nexa-hero__title {
    font-size: 44px;
  }

  .nexa-about__title,
  .nexa-start__title,
  .nexa-services__title,
  .nexa-process__title,
  .nexa-growth__title,
  .nexa-work__title,
  .nexa-testimonials__title,
  .nexa-contact__title,
  .nexa-connect__title {
    font-size: 32px;
  }

  .nexa-about__stat-value,
  .nexa-why__title {
    font-size: 30px;
  }

  .nexa-start__num,
  .nexa-service-card__title,
  .nexa-process__step-title,
  .nexa-growth__label,
  .nexa-why__text {
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .nexa-header {
    top: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
  }

  .nexa-cta span {
    display: none;
  }

  .nexa-cta {
    padding: 0.7rem;
  }

  .nexa-cta__arrow {
    margin: 0;
  }

  .nexa-hero {
    padding: 3rem 1.25rem 3rem;
  }

  .nexa-hero__media {
    margin-top: 2.5rem;
  }

  .nexa-hero__media img {
    border-radius: 18px;
  }

  .nexa-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .nexa-btn {
    width: 100%;
  }
}
