@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Hairline.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Ultralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Extlight.otf') format('opentype');
  font-weight: 250;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Semilight.otf') format('opentype');
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Demibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Real Text';
  src: url('../fonts/real-text/Real Text Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Theme 26 — Work Process Details */

:root {
  --nx26-orange: #FF7E21;
  --nx26-orange-soft: color-mix(in srgb, var(--nx26-orange) 8%, var(--nx26-white));
  --nx26-black: #0e0e0f;
  --nx26-text: #151517;
  --nx26-muted: #646466;
  --nx26-white: #ffffff;
  --nx26-grey: #f5f6f7;
  --nx26-input: #f0f1f3;
  --nx26-wrap: 1140px;
  --nx26-radius-lg: 24px;
  --nx26-radius-md: 16px;
  --nx26-radius-sm: 12px;
  --nx26-ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* footer */
  --bzn-yellow: #feb91c;
  --bzn-green: #0a5240;
  --bzn-green-hover: #0e6b52;
  --bzn-pure-black: #000000;
  --bzn-white: #ffffff;
  --bzn-gray: #646466;
  --bzn-text: #0e0e0f;
  --bzn-muted: #7f8490;
  --bzn-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.nx26-body {
  margin: 0;
  font-family: 'Real Text', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--nx26-text);
  background: var(--nx26-white);
  overflow-x: hidden;
  position: relative;
}

body.nx26-menu-open {
  overflow: hidden;
}

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

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

a:hover,
a:focus {
  text-decoration: none;
}

.nx26-wrap,
.bzn-lp-wrap {
  width: min(100%, var(--nx26-wrap));
  max-width: var(--nx26-wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.nx26-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}

/* Header */
.nx26-header {
  position: sticky;
  top: 60px;
  z-index: 1000;
}

.nx26-header__inner {
  background: var(--nx26-white);
  border-radius: 999px;
  padding: 8px 10px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s var(--nx26-ease);
  border: 0.5px solid color-mix(in srgb, var(--nx26-orange) 50%, transparent);
  max-height: 62px;
}

.nx26-header.is-scrolled .nx26-header__inner {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nx26-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nx26-logo img {
  max-width: 140px;
}

.nx26-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nx26-nav__list a {
  display: inline-flex;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 400;
  color: #646466;
  border-radius: 8px;
  transition: color 0.2s var(--nx26-ease);
}

.nx26-nav__list a:hover,
.nx26-nav__list a.is-active {
  color: var(--nx26-orange);
}

.nx26-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nx26-header-login {
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-text);
}

.nx26-header-login:hover {
  color: var(--nx26-orange);
}

.nx26-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  background: var(--nx26-black);
  color: var(--nx26-white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: transform 0.2s var(--nx26-ease), background 0.2s var(--nx26-ease);
  min-width: max-content;
}

.nx26-btn-dark:hover {
  color: var(--nx26-white);
  background: #2a2a2c;
  transform: translateY(-1px);
}

.nx26-burger {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.nx26-burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nx26-black);
  border-radius: 2px;
  transition: transform 0.25s var(--nx26-ease), opacity 0.25s var(--nx26-ease);
}

.nx26-burger.is-active .nx26-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nx26-burger.is-active .nx26-burger__line:nth-child(2) {
  opacity: 0;
}

.nx26-burger.is-active .nx26-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nx26-mobile {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}

.nx26-mobile.is-open {
  pointer-events: auto;
}

.nx26-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s var(--nx26-ease);
}

.nx26-mobile.is-open .nx26-mobile__backdrop {
  opacity: 1;
}

.nx26-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 320px);
  height: 100%;
  background: var(--nx26-white);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s var(--nx26-ease);
  display: flex;
  flex-direction: column;
}

.nx26-mobile.is-open .nx26-mobile__panel {
  transform: translateX(0);
}

.nx26-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.nx26-mobile__close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--nx26-grey);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.nx26-mobile__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nx26-mobile__nav a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--nx26-text);
  border-bottom: 1px solid #ececec;
}

.nx26-mobile__nav a.is-active {
  color: var(--nx26-orange);
}

.nx26-mobile__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hero */
.nx26-wpd-hero {
  padding: 140px 0 40px;
}

.nx26-wpd-hero__title {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--nx26-orange);
}

.nx26-wpd-hero__subtitle {
  margin: 0 0 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--nx26-black);
  max-width: 720px;
}

.nx26-wpd-hero__text {
  margin: 0 0 60px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nx26-black);
  max-width: 760px;
}

.nx26-wpd-hero__media {
  border-radius: var(--nx26-radius-lg);
  overflow: hidden;
  background: var(--nx26-grey);
}

.nx26-wpd-hero__media img {
  width: 100%;
  min-height: 400px;
  max-height: 400px;
  object-fit: cover;
}

/* Stage list */
.nx26-wpd-stage {
  padding: 24px 0 72px;
}

.nx26-wpd-stage__title {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 400;
  color: var(--nx26-orange);
}

.nx26-wpd-stage__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nx26-wpd-stage__item {
  padding: 24px 28px;
  background: color-mix(in srgb, var(--nx26-orange) 10%, transparent);
  border-left: 1px solid var(--nx26-orange);
}

.nx26-wpd-stage__item h4 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 400;
  color: var(--nx26-orange);
}

.nx26-wpd-stage__item p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--nx26-text);
}

/* Contact panel */
.nx26-wpd-contact {
  padding: 0 0 96px;
}

.nx26-wpd-contact__panel {
  width: 100%;
}

.nx26-wpd-profile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 10px;
  background: var(--nx26-white);
  border-radius: var(--nx26-radius-md);
  box-shadow: 0 0 4px 0 #00000016;
  margin-bottom: 30px;
}

.nx26-wpd-profile img {
  width: 157px;
  height: 197px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
}

.nx26-wpd-profile__hello {
  display: block;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--nx26-black);
  margin-bottom: 15px;
  max-width: 180px;
}

.nx26-wpd-profile__role {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--nx26-black);
}

.nx26-wpd-profile__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--nx26-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nx26-wpd-work-card {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 320px;
  min-height: 320px;
  max-height: 320px;
  padding: 20px 28px;
  border-radius: 20px;
  overflow: hidden;
}

.nx26-wpd-work-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  z-index: -1;
}

/* Dashboard — My Quotes CTA image */
.nx26-page-quotes .nx26-wpd-work-card {
  width: 100%;
}

.nx26-wpd-work-card__title {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--nx26-white);
  margin-bottom: 10px;
}

.nx26-wpd-work-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
  color: var(--nx26-white);
  text-decoration: underline;
}

.nx26-wpd-work-card__link:hover {
  color: var(--nx26-white);
  opacity: 1;
}

.nx26-wpd-form-wrap {
  background: #D9D9D930;
  border-radius: 20px;
  padding: 50px 40px;
}

.nx26-wpd-form__title {
  margin: 0 0 40px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #494949;
}

.nx26-wpd-form__input,
.nx26-wpd-form__textarea {
  width: 100%;
  border: none;
  background: transparent;
  border-radius: var(--nx26-radius-sm);
  border: 1px solid #D9D9D980;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 15px;
  color: #66666666;
  outline: none;
  transition: box-shadow 0.2s var(--nx26-ease);
}

.nx26-wpd-form__input:focus,
.nx26-wpd-form__textarea:focus {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--nx26-orange) 25%, transparent);
}

.nx26-wpd-form__input::placeholder,
.nx26-wpd-form__textarea::placeholder {
  color: #66666666;
}

.nx26-wpd-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.nx26-wpd-form__submit {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 14px 24px;
  background: var(--nx26-black);
  color: var(--nx26-white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s var(--nx26-ease), transform 0.2s var(--nx26-ease);
}

.nx26-wpd-form__submit:hover {
  background: #2a2a2c;
  transform: translateY(-1px);
}

/* Footer — copied from course template */
.bzn-lp-footer {
  background: var(--bzn-pure-black);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.bzn-lp-footer__top {
  padding-top: 48px;
}

.bzn-lp-footer__top-inner {
  padding-bottom: 26px;
  border-bottom: 1px solid #66666693;
  margin-bottom: 60px;
}

.bzn-lp-footer__desc {
  font-size: 20px;
  line-height: 32px;
  max-width: 540px;
  margin: 0 0 60px;
  color: rgba(255, 255, 255, 0.82);
}

.bzn-lp-footer__social {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.bzn-lp-footer__social a {
  color: var(--bzn-white);
  font-size: 20px;
  transition: color 0.2s ease;
}

.bzn-lp-footer__social a:hover {
  color: var(--nx26-orange);
}

.bzn-lp-footer__newsletter label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
}

.bzn-lp-footer__form {
  display: flex;
  max-width: 400px;
  background: #88888917;
  border-radius: 8px;
  padding: 6px 6px 6px 20px;
}

.bzn-lp-footer__form input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--bzn-white);
  font-size: 14px;
  outline: none;
  min-width: 0;
}

.bzn-lp-footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.bzn-lp-footer__form button {
  border: none;
  background: transparent;
  color: var(--bzn-white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.bzn-lp-footer__form button:hover {
  color: var(--nx26-white);
  background: var(--nx26-orange);
  border-radius: 6px;
}

.bzn-lp-footer__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  max-width: 420px;
  cursor: pointer;
}

.bzn-lp-footer__consent span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.bzn-lp-footer__consent input[type='checkbox'] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 2px solid var(--bzn-gray);
  border-radius: 2px;
  cursor: pointer;
}

.bzn-lp-footer__consent input[type='checkbox']:checked {
  border-color: var(--bzn-gray);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.bzn-lp-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.bzn-lp-footer__nav a {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--bzn-white);
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.bzn-lp-footer__nav a:hover {
  color: var(--nx26-orange);
}

.bzn-lp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 64px;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bzn-lp-footer__bottom p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.bzn-lp-footer__bottom p span {
  color: rgba(255, 255, 255, 0.9);
}

.bzn-lp-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
}

.bzn-lp-footer__legal.mobile {
  display: none;
}

.bzn-lp-footer__legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.bzn-lp-footer__legal a:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  padding-left: 15px;
}

.bzn-lp-footer__legal a:hover {
  color: var(--bzn-white);
}

.bzn-lp-logo--light img {
  max-width: 170px;
}

/* FAQ page */
.nx26-faq-hero {
  padding: 140px 0 48px;
}

.nx26-faq-hero__title {
  margin: 0 0 24px;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--nx26-orange);
}

.nx26-faq-hero__text {
  margin: 0 0 32px;
  max-width: 720px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--nx26-black);
}

.nx26-faq-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  background: var(--nx26-orange);
  color: var(--nx26-white);
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  transition: background 0.2s var(--nx26-ease), transform 0.2s var(--nx26-ease);
}

.nx26-faq-hero__btn:hover {
  color: var(--nx26-white);
  background: #e86f12;
  transform: translateY(-1px);
}

.nx26-faq-list {
  padding: 0 0 80px;
}

.nx26-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nx26-faq-item {
  background: #D9D9D940;
  border-radius: 16px;
  overflow: hidden;
}

.nx26-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 26px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.nx26-faq-item__question {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--nx26-black);
}

.nx26-faq-item__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nx26-orange);
  color: var(--nx26-white);
  font-size: 16px;
  transition: transform 0.25s var(--nx26-ease);
}

.nx26-faq-item.is-open .nx26-faq-item__icon {
  transform: rotate(45deg);
}

.nx26-faq-item__panel {
  display: none;
  padding: 0 24px 22px;
}

.nx26-faq-item.is-open .nx26-faq-item__panel {
  display: block;
}

.nx26-faq-item__panel p {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--nx26-black);
  max-width: 900px;
}

/* Team page */
.nx26-team {
  padding: 180px 0 80px;
}

.nx26-team__intro {
  text-align: center;
  margin-bottom: 70px;
}

.nx26-team__eyebrow {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--nx26-black);
}

.nx26-team__title {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--nx26-black);
}

.nx26-team__title span {
  color: var(--nx26-orange);
}

.nx26-team-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.nx26-team-card__name {
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-black);
}

.nx26-team-card__role {
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-black);
  text-align: right;
}

.nx26-team-card__media {
  position: relative;
  overflow: hidden;
  background: var(--nx26-grey);
}

.nx26-team-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.nx26-team-card.has-socials:hover .nx26-team-card__media img {
  transform: scale(1.04);
}

.nx26-team-card__socials {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 14, 15, 0.72) 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nx26-team-card.has-socials:hover .nx26-team-card__socials,
.nx26-team-card.has-socials:focus-within .nx26-team-card__socials {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nx26-team-card__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--nx26-white);
  color: var(--nx26-orange);
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nx26-team-card__social-link:hover,
.nx26-team-card__social-link:focus-visible {
  background-color: var(--nx26-orange);
  color: var(--nx26-white);
  transform: translateY(-2px);
}

.nx26-team-card__join {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  aspect-ratio: 5 / 6;
  padding: 28px 24px;
  background: var(--nx26-white);
  border: 1px solid #D9D9D9;
}

.nx26-team-card__join-text {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--nx26-black);
  max-width: 220px;
}

.nx26-team-card__join-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nx26-team-card__join-link:hover {
  color: #e86f12;
}

/* Pricing page */
.nx26-pricing-hero {
  padding: 140px 0 80px;
}

.nx26-pricing-hero__title {
  margin: 0 0 30px;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--nx26-orange);
}

.nx26-pricing-hero__text {
  margin: 0;
  max-width: 820px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--nx26-black);
}

.nx26-pricing-cards {
  padding: 0 0 120px;
}

.nx26-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 50px 35px;
  background: var(--nx26-white);
  border-radius: 26px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nx26-price-card--featured {
  background: var(--nx26-orange);
  box-shadow: 0 42px 34px 0 color-mix(in srgb, var(--nx26-orange) 40%, transparent);
  padding-top: 60px;
}

.nx26-price-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: var(--nx26-white);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--nx26-orange);
}

.nx26-price-card__price {
  margin-bottom: 50px;
  line-height: 1.2;
}

.nx26-price-card__amount {
  font-size: 36px;
  font-weight: 500;
  color: #231D4F;
}

.nx26-price-card--featured .nx26-price-card__amount,
.nx26-price-card--featured .nx26-price-card__period {
  color: var(--nx26-white);
}

.nx26-price-card__period {
  font-size: 16px;
  font-weight: 300;
  color: #231D4F;
}

.nx26-price-card__name {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 500;
  color:#231D4F;
}

.nx26-price-card--featured .nx26-price-card__name {
  color: var(--nx26-white);
}

.nx26-price-card__desc {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: #848199;
}

.nx26-price-card--featured .nx26-price-card__desc {
  color: rgba(255, 255, 255, 0.9);
}

.nx26-price-card__features {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  flex: 1;
}

.nx26-price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #848199;
}

.nx26-price-card__features li:last-child {
  margin-bottom: 0;
}

.nx26-price-card__features i {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 14px;
  color: var(--nx26-orange);
  width: 24px;
  height: 24px;
  background: color-mix(in srgb, var(--nx26-orange) 20%, transparent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nx26-price-card--featured .nx26-price-card__features li {
  color: var(--nx26-white);
}

.nx26-price-card--featured .nx26-price-card__features i {
  color: var(--nx26-white);
  background: #FFFFFF20;
}

.nx26-price-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: color-mix(in srgb, var(--nx26-orange) 20%, transparent);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--nx26-orange);
  text-align: center;
  transition: background 0.2s var(--nx26-ease), color 0.2s var(--nx26-ease);
}

.nx26-price-card__btn:hover {
  background: color-mix(in srgb, var(--nx26-orange) 30%, transparent);
  color: var(--nx26-orange);
}

.nx26-price-card__btn--light {
  background: var(--nx26-white);
  color: var(--nx26-orange);
}

.nx26-price-card__btn--light:hover {
  background: color-mix(in srgb, var(--nx26-white) 80%, transparent);
  color: var(--nx26-orange);
}

/* Dashboard page */
.nx26-dash-hero {
  padding: 140px 0 60px;
}

.nx26-dash-hero__inner {
  width: 100%;
}

.nx26-dash-hero__title {
  margin: 0 0 20px;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--nx26-orange);
}

.nx26-dash-hero__text {
  margin: 0;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--nx26-black);
}

.nx26-dash {
  padding: 0 0 80px;
}

.nx26-dash__layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.nx26-dash__sidebar {
  flex: 0 0 300px;
  align-self: flex-start;
  background: var(--nx26-white);
  border-radius: 20px;
  box-shadow: 0 4px 16.2px 0 #00000034;
  overflow: hidden;
}

.nx26-dash__nav {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
}

.nx26-dash__nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 400;
  color: #707070;
  border-left: 3px solid transparent;
  transition: color 0.2s var(--nx26-ease), background-color 0.2s var(--nx26-ease), border-color 0.2s var(--nx26-ease);
}

.nx26-dash__nav-link:last-child {
  border-bottom: none;
}

.nx26-dash__nav-link i {
  font-size: 20px;
  text-align: center;
}

.nx26-dash__nav-link:hover {
  color: var(--nx26-orange);
  background: color-mix(in srgb, var(--nx26-orange) 8%, transparent);
}

.nx26-dash__nav-link--active {
  font-weight: 500;
  color: var(--nx26-orange);
  background: color-mix(in srgb, var(--nx26-orange) 10%, transparent);
  border-left-color: var(--nx26-orange);
}

.nx26-dash__main {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.nx26-account-card {
  background: var(--nx26-white);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.nx26-account-card__title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 500;
  color: var(--nx26-black);
  margin-bottom: 28px;
  border-bottom: 1px solid #0000001a;
  padding-bottom: 28px;
}

.nx26-account-card__title::before {
  content: '';
  width: 4px;
  height: 28px;
  background: var(--nx26-orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.nx26-account-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.nx26-account-card__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nx26-account-card__label {
  font-size: 14px;
  font-weight: 400;
  color: var(--nx26-muted);
}

.nx26-account-card__value {
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-black);
}

.nx26-account-card__value--empty {
  color: #70707060;
  font-style: italic;
  font-weight: 400;
}

.nx26-stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  border-radius: 12px;
  color: var(--nx26-white);
  min-height: 160px;
  transition: transform 0.2s var(--nx26-ease), box-shadow 0.2s var(--nx26-ease);
}

.nx26-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  color: var(--nx26-white);
}

.nx26-stat-card--orange {
  background: var(--nx26-orange);
}

.nx26-stat-card--dark {
  background: var(--nx26-black);
}

.nx26-stat-card__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.nx26-stat-card__number {
  display: block;
  font-size: 70px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.nx26-stat-card__desc {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.nx26-stat-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--nx26-white);
  flex-shrink: 0;
  font-size: 20px;
  transition: transform 0.2s var(--nx26-ease);
}

.nx26-stat-card--orange .nx26-stat-card__arrow {
  color: var(--nx26-orange);
}

.nx26-stat-card--dark .nx26-stat-card__arrow {
  color: var(--nx26-black);
}

.nx26-stat-card__arrow i {
  transform: rotate(45deg);
}

.nx26-stat-card:hover .nx26-stat-card__arrow {
  transform: translate(2px, -2px);
}

.nx26-platform-card {
  background: var(--nx26-white);
  border-radius: 20px;
  padding: 18px 30px 22px;
  box-shadow: 0 10px 40px rgba(67, 67, 67, 0.09);
  width: 100%;
  display: block;
  transition: transform 0.2s var(--nx26-ease), box-shadow 0.2s var(--nx26-ease);
}

.nx26-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(67, 67, 67, 0.14);
}

.nx26-platform-card__icon {
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx26-platform-card__icon svg {
  max-width: 40px;
}

.nx26-platform-card__icon--orange {
  background: #F0A84B22;
}

.nx26-platform-card__icon--red {
  background: #FB585E22;
}

.nx26-platform-card__title {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--nx26-black);
  margin: 20px 0 0;
}

.nx26-platform-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #00000020;
}

.nx26-platform-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 400;
  color: var(--nx26-black);
}

.nx26-platform-card__status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #118D57;
}

.nx26-platform-card__btn {
  display: inline-block;
  border-radius: 10px;
  padding: 8px 32px;
  color: var(--nx26-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  border: 1px solid transparent;
  transition: 0.3s all ease-in-out;
}

.nx26-platform-card__btn--orange {
  background: #F0A84B;
}

.nx26-platform-card__btn--red {
  background: #FB585E;
}

.nx26-platform-card:hover .nx26-platform-card__btn--orange {
  border-color: #F0A84B;
  color: #F0A84B;
  background: transparent;
}

.nx26-platform-card:hover .nx26-platform-card__btn--red {
  border-color: #FB585E;
  color: #FB585E;
  background: transparent;
}

/* ==========================================================================
   Profile — nx26-profile
   ========================================================================== */

.nx26-profile-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: var(--nx26-white);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.nx26-profile-summary__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.nx26-profile-summary__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--nx26-orange);
  color: var(--nx26-white);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nx26-profile-summary__edit {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--nx26-black);
  color: var(--nx26-white);
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s var(--nx26-ease);
}

.nx26-profile-summary__edit:hover {
  background-color: var(--nx26-orange);
}

.nx26-profile-summary__info {
  flex: 1;
  min-width: 0;
}

.nx26-profile-summary__name {
  font-size: 20px;
  font-weight: 400;
  color: var(--nx26-black);
  margin-bottom: 4px;
}

.nx26-profile-summary__email {
  font-size: 16px;
  font-weight: 300;
  color: #151517;
}

.nx26-profile-summary__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--nx26-orange) 22%, transparent);
  font-size: 14px;
  font-weight: 500;
  color: var(--nx26-orange);
  flex-shrink: 0;
  border: 1px solid var(--nx26-orange);
}

.nx26-profile-summary__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2DC071;
}

.nx26-profile-form {
  background-color: var(--nx26-white);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nx26-profile-form__title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 500;
  color: var(--nx26-black);
  margin-bottom: 32px;
  border-bottom: 1px solid #0000001a;
  padding-bottom: 28px;
}

.nx26-profile-form__title::before {
  content: '';
  width: 4px;
  height: 28px;
  background-color: var(--nx26-orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.nx26-profile-form__section {
  margin-bottom: 32px;
}

.nx26-profile-form__section:last-of-type {
  margin-bottom: 0;
}

.nx26-profile-form__section-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-orange);
  padding-bottom: 10px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--nx26-orange);
}

.nx26-profile-form__group {
  margin-bottom: 20px;
}

.nx26-profile-form__label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #151517;
  margin-bottom: 8px;
}

.nx26-profile-form__label span {
  color: var(--nx26-orange);
}

.nx26-profile-form__input,
.nx26-profile-form__select {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  color: #646466;
  background-color: #88888911;
  border: 1px solid transparent;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s var(--nx26-ease), background-color 0.3s var(--nx26-ease);
}

.nx26-profile-form__input::placeholder {
  color: #64646658;
}

.nx26-profile-form__input:focus,
.nx26-profile-form__select:focus {
  border-color: var(--nx26-orange);
  background-color: var(--nx26-white);
}

.nx26-profile-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.nx26-profile-form__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

.nx26-profile-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s var(--nx26-ease), color 0.3s var(--nx26-ease), transform 0.3s var(--nx26-ease);
}

.nx26-profile-form__btn--cancel {
  background-color: var(--nx26-black);
  color: var(--nx26-white);
}

.nx26-profile-form__btn--cancel:hover {
  background-color: #4a4a4a;
}

.nx26-profile-form__btn--save {
  background-color: var(--nx26-orange);
  color: var(--nx26-white);
}

.nx26-profile-form__btn--save:hover {
  background-color: #e86f12;
}

/* ==========================================================================
   Packages — nx26-packages
   ========================================================================== */

.nx26-packages {
  background-color: var(--nx26-white);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nx26-packages__title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 500;
  color: var(--nx26-black);
  margin-bottom: 8px;
  border-bottom: 1px solid #64646630;
  padding-bottom: 28px;
}

.nx26-packages__title::before {
  content: '';
  width: 4px;
  height: 28px;
  background-color: var(--nx26-orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.nx26-packages__desc {
  font-size: 16px;
  color: #707070;
  margin-bottom: 28px;
  font-weight: 300;
}

.nx26-packages__tabs {
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 28px;
}

.nx26-packages__tab {
  position: relative;
  padding: 0 0 14px;
  font-size: 16px;
  font-weight: 400;
  color: #707070;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s var(--nx26-ease);
}

.nx26-packages__tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: var(--nx26-orange);
  transform: scaleX(0);
  transition: transform 0.3s var(--nx26-ease);
}

.nx26-packages__tab:hover {
  color: var(--nx26-orange);
}

.nx26-packages__tab--active {
  color: var(--nx26-orange);
  font-weight: 500;
}

.nx26-packages__tab--active::after {
  transform: scaleX(1);
}

.nx26-packages__panel {
  display: none;
}

.nx26-packages__panel--active {
  display: block;
}

.nx26-packages__empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--nx26-muted);
}

.nx26-packages__empty i {
  font-size: 40px;
  color: #d1d1d1;
  margin-bottom: 16px;
}

.nx26-packages__empty p {
  font-size: 16px;
  margin-bottom: 4px;
}

.nx26-packages__empty span {
  font-size: 14px;
  color: #9a9a9a;
}

.nx26-package-card {
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 28px 32px;
}

.nx26-package-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}

.nx26-package-card__name {
  font-size: 20px;
  font-weight: 400;
  color: var(--nx26-black);
  margin-bottom: 6px;
}

.nx26-package-card__subtitle {
  font-size: 14px;
  color: #707070;
  font-weight: 400;
}

.nx26-package-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 26px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  flex-shrink: 0;
}

.nx26-package-card__badge--active {
  background-color: #2DC071;
  color: var(--nx26-white);
}

.nx26-package-card__badge--expired {
  background-color: rgba(107, 107, 107, 0.12);
  color: var(--nx26-muted);
}

.nx26-package-card__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 24px;
    margin-bottom: 40px;
}

.nx26-package-card__meta-third {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.nx26-package-card__meta-second {
  grid-template-columns: 1fr;
  justify-content: center;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.nx26-package-card__meta-item {
  display: flex;
  flex-direction: column;
}

.nx26-package-card__meta-label {
  font-size: 14px;
  font-weight: 400;
  color: #646466;
}

.nx26-package-card__meta-value {
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-black);
}

.nx26-package-card__meta-value--highlight {
  color: var(--nx26-orange);
}

.nx26-package-card__usage {
  margin: 28px 0;
  padding: 16px 0 24px;
  border-top: 1px solid #64646630;
  border-bottom: 1px solid #64646630;
}

.nx26-package-card__usage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.nx26-package-card__usage-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--nx26-black);
}

.nx26-package-card__usage-count {
  font-size: 15px;
  font-weight: 500;
  color: #70707070;
}

.nx26-package-card__progress {
  width: 100%;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 50px;
  overflow: hidden;
}

.nx26-package-card__progress-bar {
  height: 100%;
  background-color: var(--nx26-orange);
  border-radius: 50px;
  transition: width 0.3s var(--nx26-ease);
}

.nx26-package-card__features-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--nx26-black);
  margin-bottom: 30px;
}

.nx26-package-card__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
  padding-left: 0;
}

.nx26-package-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--nx26-black);
}

.nx26-package-card__feature i {
  flex-shrink: 0;
  font-size: 14px;
  color: #118D57;
}

.nx26-package-card__feature--excluded {
  color: #9a9a9a;
}

.nx26-package-card__feature--excluded i {
  color: #9a9a9a;
}

.nx26-package-card__feature--more {
  color: var(--nx26-orange);
}

.nx26-package-card__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
  border-top: 1px solid #64646630;
}

.nx26-package-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--nx26-white);
  background-color: var(--nx26-orange);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s var(--nx26-ease);
}

.nx26-package-card__btn:hover {
  background-color: #e86f12;
  color: var(--nx26-white);
}

/* ==========================================================================
   Quotes — nx26-quotes
   ========================================================================== */

.nx26-quotes-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  background-color: var(--nx26-white);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  overflow: hidden;
}

.nx26-quotes-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0x;
  padding: 40px 20px;
  text-align: center;
}

.nx26-quotes-stats__item:not(:last-child) {
  border-right: 1px solid #e8e8e8;
}

.nx26-quotes-stats__label {
  font-size: 16px;
  font-weight: 400;
  color: #646466;
}

.nx26-quotes-stats__value {
  font-size: 32px;
  font-weight: 400;
  color: var(--nx26-black);
  line-height: 1;
}

.nx26-quotes-stats__value--pending {
  color: var(--nx26-orange);
}

.nx26-quotes {
  background-color: var(--nx26-white);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nx26-quotes__title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 500;
  color: var(--nx26-black);
  margin-bottom: 28px;
  border-bottom: 1px solid #64646630;
  padding-bottom: 20px;
}

.nx26-quotes__title::before {
  content: '';
  width: 4px;
  height: 28px;
  background-color: var(--nx26-orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.nx26-quotes__tabs {
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 28px;
}

.nx26-quotes__tab {
  position: relative;
  padding: 0 0 14px;
  font-size: 16px;
  font-weight: 400;
  color: #707070;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s var(--nx26-ease);
}

.nx26-quotes__tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: var(--nx26-orange);
  transform: scaleX(0);
  transition: transform 0.3s var(--nx26-ease);
}

.nx26-quotes__tab:hover {
  color: var(--nx26-orange);
}

.nx26-quotes__tab--active {
  color: var(--nx26-orange);
  font-weight: 500;
}

.nx26-quotes__tab--active::after {
  transform: scaleX(1);
}

.nx26-quotes-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 40px;
}

.nx26-quotes-table {
  width: 100%;
  min-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 0;
}

.nx26-quotes-table thead th {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nx26-muted);
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
  white-space: nowrap;
}

.nx26-quotes-table tbody td {
  padding: 18px 16px;
  font-size: 15px;
  font-weight: 400;
  color: var(--nx26-black);
  border-bottom: 1px solid #e8e8e8;
  vertical-align: middle;
}

.nx26-quotes-table tbody tr:last-child td {
  border-bottom: none;
}

.nx26-quote-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

.nx26-quote-badge--pending {
  background-color: color-mix(in srgb, var(--nx26-orange) 10%, transparent);
  color: var(--nx26-orange);
  border: 1px solid var(--nx26-orange);
  border-radius: 8px;
  padding: 5px 24px;
}

.nx26-quote-badge--approved {
  background-color: rgba(17, 141, 87, 0.12);
  color: #118D57;
}

.nx26-quote-badge--rejected {
  background-color: rgba(107, 107, 107, 0.12);
  color: var(--nx26-muted);
}

.nx26-quote-item--hidden {
  display: none !important;
}

.nx26-quotes-table tbody .nx26-quote-item {
  display: table-row;
}

.nx26-quote-detail {
  padding: 28px 32px;
  background-color: #D9D9D924;
}

.nx26-quote-detail__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--nx26-orange);
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--nx26-orange);
}

.nx26-quote-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  margin-bottom: 40px;
}

.nx26-quote-detail__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nx26-quote-detail__label {
  font-size: 16px;
  font-weight: 400;
  color: #646466;
}

.nx26-quote-detail__value {
  font-size: 18px;
  font-weight: 400;
  color: var(--nx26-black);
}

.nx26-quote-detail__value--highlight {
  color: var(--nx26-orange);
}

.nx26-quote-detail__message-title {
  font-size: 15px;
  font-weight: 400;
  color: #646466;
  margin-bottom: 12px;
}

.nx26-quote-detail__message {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #000000;
}

.nx26-quotes__empty {
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: var(--nx26-muted);
}

.nx26-quotes__empty--visible {
  display: block;
}

.nx26-quotes__empty i {
  font-size: 40px;
  color: #d1d1d1;
  margin-bottom: 16px;
}

.nx26-quotes__empty p {
  font-size: 16px;
  margin-bottom: 4px;
}

.nx26-quotes__empty span {
  font-size: 14px;
  color: #9a9a9a;
}

/* ==========================================================================
   Change Password — nx26-password-form
   ========================================================================== */

.nx26-password-form {
  background-color: var(--nx26-white);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nx26-password-form__title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 500;
  color: var(--nx26-black);
  margin-bottom: 24px;
  border-bottom: 1px solid #64646630;
  padding-bottom: 20px;
}

.nx26-password-form__title::before {
  content: '';
  width: 4px;
  height: 28px;
  background-color: var(--nx26-orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.nx26-password-form__alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  margin-bottom: 28px;
  background-color: color-mix(in srgb, var(--nx26-orange) 12%, transparent);
  border: 1px solid var(--nx26-orange);
  border-radius: 10px;
}

.nx26-password-form__alert i {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--nx26-orange);
  margin-top: 2px;
}

.nx26-password-form__alert--content span {
  font-size: 16px;
  font-weight: 500;
  color: var(--nx26-orange);
}

.nx26-password-form__alert--content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--nx26-orange);
  margin: 0;
}

.nx26-password-form__divider {
  border-top: 1px solid #64646670;
  margin: 25px 0;
}

.nx26-password-form__group {
  margin-bottom: 30px;
}

.nx26-password-form__label {
  display: block;
  font-size: 16px;
  font-weight: 300;
  color: #151517;
  margin-bottom: 8px;
}

.nx26-password-form__input-wrap {
  position: relative;
}

.nx26-password-form__input {
  width: 100%;
  padding: 15px 48px 15px 18px;
  font-size: 15px;
  color: #646466;
  background-color: #88888912;
  border: 1px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s var(--nx26-ease), background-color 0.3s var(--nx26-ease);
}

.nx26-password-form__input::placeholder {
  color: #646466;
}

.nx26-password-form__input:focus {
  border-color: var(--nx26-orange);
  background-color: var(--nx26-white);
}

.nx26-password-form__toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--nx26-muted);
  cursor: pointer;
  transition: color 0.3s var(--nx26-ease);
}

.nx26-password-form__toggle:hover {
  color: var(--nx26-orange);
}

.nx26-password-form__requirements {
  background-color: #D9D9D925;
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 30px;
  border: 1px solid #D9D9D9;
}

.nx26-password-form__requirements-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--nx26-black);
  margin-bottom: 20px;
}

.nx26-password-form__requirements-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nx26-password-form__requirement {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
  color: #000000;
}

.nx26-password-form__requirement i {
  flex-shrink: 0;
  font-size: 10px;
  color: #707070;
  width: 20px;
  height: 20px;
  background-color: #70707022;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx26-password-form__requirement--valid {
  color: var(--nx26-black);
}

.nx26-password-form__requirement--valid i {
  color: #118D57;
  background-color: #118D5722;
}

.nx26-password-form__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

.nx26-password-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s var(--nx26-ease), color 0.3s var(--nx26-ease);
}

.nx26-password-form__btn--cancel {
  background-color: var(--nx26-black);
  color: var(--nx26-white);
}

.nx26-password-form__btn--cancel:hover {
  background-color: #4a4a4a;
}

.nx26-password-form__btn--save {
  background-color: var(--nx26-orange);
  color: var(--nx26-white);
}

.nx26-password-form__btn--save:hover {
  background-color: #e86f12;
}

/* ==========================================================================
   Request Quote Modal — nx26-quote-modal
   ========================================================================== */

body.nx26-modal-open {
  overflow: hidden;
}

.nx26-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.nx26-quote-modal--open {
  display: flex;
}

.nx26-quote-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.65);
}

.nx26-quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: var(--nx26-white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.nx26-quote-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background-color: var(--nx26-orange);
  color: var(--nx26-white);
}

.nx26-quote-modal__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx26-quote-modal__header-left i {
  font-size: 20px;
}

.nx26-quote-modal__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--nx26-white);
  margin: 0;
}

.nx26-quote-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--nx26-white);
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s var(--nx26-ease);
}

.nx26-quote-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.nx26-quote-modal__body {
  padding: 28px 28px 24px;
  overflow-y: auto;
}

.nx26-quote-modal__group {
  margin-bottom: 18px;
}

.nx26-quote-modal__label {
  display: block;
  font-size: 15px;
  font-weight: 300;
  color: #151517;
  margin-bottom: 5px;
}

.nx26-quote-modal__input,
.nx26-quote-modal__select,
.nx26-quote-modal__textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  color: #646466;
  background-color: #88888910;
  border: 1px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s var(--nx26-ease), background-color 0.3s var(--nx26-ease);
}

.nx26-quote-modal__textarea {
  min-height: 120px;
  resize: vertical;
}

.nx26-quote-modal__input::placeholder,
.nx26-quote-modal__textarea::placeholder {
  color: #64646655;
}

.nx26-quote-modal__input:focus,
.nx26-quote-modal__select:focus,
.nx26-quote-modal__textarea:focus {
  border-color: var(--nx26-orange);
  background-color: var(--nx26-white);
}

.nx26-quote-modal__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.nx26-quote-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 8px;
}

.nx26-quote-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s var(--nx26-ease), color 0.3s var(--nx26-ease);
}

.nx26-quote-modal__btn--cancel {
  background-color: var(--nx26-black);
  color: var(--nx26-white);
}

.nx26-quote-modal__btn--cancel:hover {
  background-color: #4a4a4a;
}

.nx26-quote-modal__btn--submit {
  background-color: var(--nx26-orange);
  color: var(--nx26-white);
}

.nx26-quote-modal__btn--submit:hover {
  background-color: #e86f12;
}

/* Login page */
.nx26-login-page {
  font-family: 'Real Text', sans-serif;
  background: var(--nx26-white);
  margin: 0;
  padding: 0;
}

.nx26-login {
  display: flex;
  min-height: 100vh;
}

.nx26-login__visual {
  flex: 0 0 45%;
  max-width: 45%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nx26-orange);
}

.nx26-login__mark {
  width: 60%;
  height: auto;
}

.nx26-login__panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  background: var(--nx26-white);
}

.nx26-login__form-wrap {
  width: 100%;
  max-width: 570px;
}

.nx26-login__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.nx26-login__logo img {
  width: 160px;
  height: auto;
}

.nx26-login__title {
  font-size: 40px;
  font-weight: 400;
  color: #333333;
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

.nx26-login__form {
  margin-top: 50px;
}

.nx26-login__group {
  margin-bottom: 30px;
}

.nx26-login__label {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
}

.nx26-login__label span {
  color: var(--nx26-orange);
  margin-left: 2px;
}

.nx26-login__input {
  width: 100%;
  padding: 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--nx26-black);
  background: var(--nx26-white);
  border: 1px solid #D9EBFF;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s var(--nx26-ease), box-shadow 0.2s var(--nx26-ease);
}

.nx26-login__input::placeholder {
  color: #b0b0b0;
}

.nx26-login__input:focus {
  border-color: var(--nx26-orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--nx26-orange) 8%, transparent);
}

.nx26-login__submit {
  display: block;
  width: 100%;
  margin-top: 50px;
  padding: 15px 24px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: var(--nx26-white);
  background: var(--nx26-orange);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s var(--nx26-ease);
}

.nx26-login__submit:hover {
  background: #e86f12;
}

.nx26-login__forgot {
  display: block;
  margin-top: 26px;
  font-size: 16px;
  font-weight: 400;
  color: #6B7280;
  text-align: center;
  transition: color 0.2s var(--nx26-ease);
}

.nx26-login__forgot:hover {
  color: var(--nx26-orange);
}

/* Portfolio detail page */
.nx26-pdetail-hero {
  padding: 140px 0 48px;
}

.nx26-pdetail-body {
  padding: 0 0 80px;
}

.nx26-pdetail-hero__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.nx26-pdetail-hero__accent {
  flex-shrink: 0;
  width: 28px;
  height: 72px;
  margin-top: 8px;
  background: repeating-linear-gradient(
    to bottom,
    var(--nx26-orange) 0,
    var(--nx26-orange) 8px,
    transparent 8px,
    transparent 14px
  );
  border-radius: 2px;
}

.nx26-pdetail-hero__title {
  margin: 0;
  max-width: 900px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--nx26-orange);
}

.nx26-pdetail-hero__intro {
  max-width: 1020px;
  margin-bottom: 36px;
}

.nx26-pdetail-hero__intro p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--nx26-black);
}

.nx26-pdetail-hero__intro p:not(:first-child) {
  font-weight: 300;
}

.nx26-pdetail-hero__intro p:last-child {
  margin-bottom: 0;
}

.nx26-pdetail-hero__media {
  border-radius: 20px;
  overflow: hidden;
  background: var(--nx26-grey);
}

.nx26-pdetail-hero__media img {
  width: 100%;
  display: block;
  aspect-ratio: 12 / 5;
  object-fit: cover;
}

.nx26-pdetail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}

.nx26-pdetail-tags li {
  padding: 5px 18px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--nx26-orange) 33%, transparent);
  font-size: 14px;
  font-weight: 400;
  color: var(--nx26-orange);
}

.nx26-pdetail-block {
  margin-bottom: 48px;
}

.nx26-pdetail-block__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--nx26-orange);
}

.nx26-pdetail-block__text {
  margin: 0;
  max-width: 900px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--nx26-black);
}

.nx26-pdetail-gallery {
  margin-bottom: 48px;
}

.nx26-pdetail-gallery img {
  width: 100%;
  display: block;
  border-radius: 20px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--nx26-grey);
}

.nx26-pdetail-stats {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nx26-pdetail-stats li {
  font-size: 18px;
  line-height: 1.5;
  color: var(--nx26-black);
}

.nx26-pdetail-stats strong {
  font-weight: 400;
  color: var(--nx26-orange);
}

/* Contact page */
.nx26-contact-hero {
  padding: 140px 0 56px;
}

.nx26-contact-hero__title {
  margin: 0 0 20px;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--nx26-orange);
}

.nx26-contact-hero__text {
  margin: 0 0 48px;
  max-width: 640px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--nx26-black);
}

.nx26-contact-profile {
  flex-direction: column;
  margin-bottom: 0;
  padding: 20px;
}

.nx26-contact-profile img {
  width: 100%;
  height: 245px;
}

.nx26-contact-profile span  {
  max-width: 100%;
}

.nx26-contact-info {
  padding: 0 0 80px;
}

.nx26-contact-card {
  height: 100%;
  padding: 28px 24px;
  background: var(--nx26-white);
  border-radius: 16px;
  box-shadow: 0 0 4px 0 #00000016;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  word-break: break-word;
}

.nx26-contact-card__title {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nx26-muted);
}

.nx26-contact-card__text {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--nx26-black);
}

.nx26-contact-card__text:last-child {
  margin-bottom: 0;
}

.nx26-contact-card__text a {
  color: inherit;
  transition: color 0.2s var(--nx26-ease);
  text-decoration: underline;
}

.nx26-contact-card__text a:hover {
  color: var(--nx26-orange);
}

.nx26-contact-card__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nx26-contact-card__links a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--nx26-black);
  transition: color 0.2s var(--nx26-ease);
  text-decoration: underline;
}

.nx26-contact-card__links a:hover {
  color: var(--nx26-orange);
}

.nx26-contact-faq {
  padding: 0 0 96px;
}

.nx26-contact-faq__subtitle {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nx26-muted);
  margin-bottom: 12px;
}

.nx26-contact-faq__title {
  margin: 0 0 20px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--nx26-black);
}

.nx26-contact-faq__title span {
  color: var(--nx26-orange);
}

.nx26-contact-faq__text {
  margin: 0;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--nx26-black);
}

.nx26-contact-faq .nx26-faq-item__icon {
  background-color: #D9D9D9;
  color: var(--nx26-black);
}

/* Blog page */
.nx26-blog-hero {
  padding: 140px 0 56px;
}

.nx26-blog-hero__title {
  margin: 0 0 20px;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--nx26-orange);
}

.nx26-blog-hero__text {
  margin: 0 0 48px;
  max-width: 720px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--nx26-black);
}

.nx26-blog-featured {
  padding: 24px;
  background: var(--nx26-white);
  border-radius: 20px;
  box-shadow: 0 0 4px 0 #00000016;
}

.nx26-blog-featured__media {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.nx26-blog-featured__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  aspect-ratio: 5 / 3;
  max-height: 320px;
}

.nx26-blog-featured__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px 0 12px 12px;
}

.nx26-blog-featured__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.nx26-blog-featured__title a {
  color: var(--nx26-black);
  transition: color 0.2s var(--nx26-ease);
}

.nx26-blog-featured__title a:hover {
  color: var(--nx26-orange);
}

.nx26-blog-featured__text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--nx26-muted);
}

.nx26-blog-grid {
  padding: 0 0 80px;
}

.nx26-blog-card__cat {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--nx26-black);
}

.nx26-blog-card__media {
  display: block;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.nx26-blog-card__media img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.3s var(--nx26-ease);
}

.nx26-blog-card__media:hover img {
  transform: scale(1.03);
}

.nx26-blog-card__title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.nx26-blog-card__title a {
  color: var(--nx26-black);
  transition: color 0.2s var(--nx26-ease);
}

.nx26-blog-card__title a:hover {
  color: var(--nx26-orange);
}

.nx26-blog-card__link {
  font-size: 15px;
  font-weight: 400;
  color: var(--nx26-orange);
  text-decoration: underline;
  transition: opacity 0.2s var(--nx26-ease);
  margin-top: auto;
}

.nx26-blog-card__link:hover {
  color: var(--nx26-orange);
  opacity: 0.8;
}

/* Service detail page */
.nx26-sdetail-hero {
  padding: 190px 0 56px;
  background: var(--nx26-orange-soft);
  margin-top: -60px;
}

.nx26-sdetail-hero__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
    color: var(--nx26-black);
}

.nx26-sdetail-hero__title {
  margin: 0 0 30px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--nx26-black);
}

.nx26-sdetail-hero__title span {
  color: var(--nx26-orange);
}

.nx26-sdetail-hero__text {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--nx26-black);
}

.nx26-sdetail-hero__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.nx26-sdetail-hero__media img {
  width: 100%;
  display: block;
  aspect-ratio: 7 / 5;
  object-fit: cover;
}

.nx26-sdetail-hero__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 0;
}

.nx26-sdetail-hero__play span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--nx26-orange);
  font-size: 22px;
  padding-left: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s var(--nx26-ease), background 0.25s var(--nx26-ease);
}

.nx26-sdetail-hero__play:hover span {
  transform: scale(1.06);
  background: var(--nx26-white);
}

.nx26-sdetail-content {
  padding: 80px 0;
}

.nx26-sdetail-main {
  padding: 40px 36px;
  background: #88888916;
  border-radius: 20px;
}

.nx26-sdetail-main ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.nx26-sdetail-main p {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--nx26-black);
}

.nx26-sdetail-main p:last-child {
  margin-bottom: 0;
}

.nx26-sdetail-sidebar {
  padding: 32px 28px;
  background: color-mix(in srgb, var(--nx26-orange) 10%, transparent);
}

.nx26-sdetail-sidebar__title {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--nx26-orange);
}

.nx26-sdetail-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nx26-sdetail-sidebar__item {
  position: relative;
  padding-left: 18px;
}

.nx26-sdetail-sidebar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nx26-orange);
}

.nx26-sdetail-sidebar__link {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--nx26-orange);
  transition: color 0.2s var(--nx26-ease);
}

.nx26-sdetail-sidebar__link:hover {
  color: var(--nx26-black);
}

.nx26-sdetail-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nx26-sdetail-sidebar__tags span {
  padding: 2px 12px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--nx26-orange) 18%, transparent);
  font-size: 12px;
  font-weight: 500;
  color: var(--nx26-orange);
}

/* Video modal */
body.nx26-video-open {
  overflow: hidden;
}

.nx26-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.nx26-video-modal--open {
  display: flex;
}

.nx26-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.nx26-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
}

.nx26-video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--nx26-white);
  color: var(--nx26-black);
  font-size: 18px;
  cursor: pointer;
}

.nx26-video-modal__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--nx26-black);
}

.nx26-video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Blog detail page */
.nx26-bdetail {
  padding: 140px 0 0;
}

.nx26-bdetail-hero {
  margin-bottom: 36px;
}

.nx26-bdetail-hero .nx26-blog-card__cat {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--nx26-orange);
}

.nx26-bdetail-hero__title {
  margin: 0 0 30px;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--nx26-black);
}

.nx26-bdetail-hero__title span {
  color: var(--nx26-orange);
}

.nx26-bdetail-hero__intro {
  margin: 0;
  max-width: 720px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--nx26-black);
}

.nx26-bdetail-hero__media {
  margin-bottom: 48px;
  border-radius: 20px;
  overflow: hidden;
}

.nx26-bdetail-hero__media img {
  width: 100%;
  display: block;
  aspect-ratio: 12 / 5;
  object-fit: cover;
}

.nx26-bdetail-content {
  margin-bottom: 80px;
}

.nx26-bdetail-callout {
  margin-bottom: 40px;
  padding: 28px 32px;
  background: #C4C4C430;
  border-radius: 16px;
}

.nx26-bdetail-callout p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--nx26-black);
}

.nx26-bdetail-content__heading {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--nx26-orange);
}

.nx26-bdetail-content p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--nx26-black);
}

.nx26-bdetail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: var(--nx26-orange);
  margin-top: 30px ;
}

.nx26-bdetail-list li {
  border-left: 1.5px solid var(--nx26-orange);
  padding-left: 20px;
}

.nx26-bdetail-list li strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--nx26-orange);
}

.nx26-bdetail-list li p {
  margin: 0;
}

.nx26-bdetail-more {
  padding: 0 0 80px;
}

.nx26-bdetail-more__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.nx26-bdetail-more__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--nx26-black);
}

.nx26-bdetail-more__title span {
  color: var(--nx26-orange);
}

.nx26-bdetail-more__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--nx26-orange);
  transition: opacity 0.2s var(--nx26-ease);
}

.nx26-bdetail-more__link:hover {
  color: var(--nx26-orange);
  opacity: 0.8;
}

.nx26-blog-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--nx26-input);
}

.nx26-blog-share__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--nx26-black);
}

.nx26-blog-share__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nx26-blog-share__link,
.nx26-blog-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--nx26-grey);
  color: var(--nx26-text);
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--nx26-ease), color 0.25s var(--nx26-ease), transform 0.25s var(--nx26-ease);
}

.nx26-blog-share__link:hover,
.nx26-blog-share__btn:hover,
.nx26-blog-share__btn.is-copied {
  background: var(--nx26-orange);
  color: var(--nx26-white);
}

.nx26-blog-share__link:hover {
  transform: translateY(-2px);
}

/* Portfolio page */
.nx26-port-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--nx26-black);
}

.nx26-port-hero {
  padding: 190px 0 64px;
  background: var(--nx26-orange-soft);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.nx26-port-top-bg {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  z-index: -1;
}

.nx26-port-hero__visual {
  position: relative;
}

.nx26-port-hero__visual img {
  width: 100%;
  display: block;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.nx26-port-hero__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 320px;
  padding: 24px 28px;
  background: #010a44;
}
.nx26-port-hero__badge p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--nx26-white);
}

.nx26-port-hero__title {
  margin: 0 0 24px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--nx26-orange);
}

.nx26-port-hero__text {
  margin: 0 0 40px;
  max-width: 520px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--nx26-black);
}

.nx26-port-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--nx26-orange);
  color: var(--nx26-white);
  font-size: 16px;
  font-weight: 400;
  border-radius: 10px;
  transition: background 0.2s var(--nx26-ease), transform 0.2s var(--nx26-ease);
}

.nx26-port-hero__btn:hover {
  color: var(--nx26-white);
  background: #e86f12;
  transform: translateY(-1px);
}

.nx26-port-features {
  padding: 48px 0;
  background: color-mix(in srgb, var(--nx26-orange) 4%, transparent);
}

.nx26-port-feature {
  height: 100%;
  text-align: center;
  border-right: 1px solid #88888940;
  padding-right: 20px;
}

.col-lg-3:last-child .nx26-port-feature {
  border-right: none;
  padding-right: 0;
}

.nx26-port-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--nx26-orange) 16%, transparent);
  color: var(--nx26-orange);
  font-size: 20px;
}

.nx26-port-feature__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  color: var(--nx26-black);
}

.nx26-port-feature__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--nx26-black);
}

.nx26-port-work {
  padding: 80px 0;
}

.nx26-port-work__img {
  width: 100%;
  display: block;
  aspect-ratio: 7 / 5;
  object-fit: cover;
}

.nx26-port-section__title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--nx26-black);
}

.nx26-port-section__title span {
  color: var(--nx26-orange);
}

.nx26-port-section__text {
  margin: 0 0 28px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #010a44;
}

.nx26-port-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nx26-port-acc {
  background: #88888916;
  border-radius: 14px;
  overflow: hidden;
}

.nx26-port-acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: none;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  color: #010a44;
  cursor: pointer;
}

.nx26-port-acc__trigger-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nx26-port-acc__trigger i.far {
  color: var(--nx26-orange);
  font-size: 20px;
  margin-top: 4px;
}

.nx26-port-acc__trigger i.fas {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--nx26-black);
  font-size: 18px;
}

.nx26-port-acc__panel {
  display: none;
  padding: 0 22px 18px;
}

.nx26-port-acc.is-open .nx26-port-acc__panel {
  display: block;
}

.nx26-port-acc__panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #010a44;
}

.nx26-port-projects {
  padding: 80px 0;
  background: #C4C4C430;
}

.nx26-port-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 40px;
  background: var(--nx26-white);
  border-radius: 20px;
  border: 1px solid transparent;
  color: inherit;
  transition: transform 0.25s var(--nx26-ease), box-shadow 0.25s var(--nx26-ease);
  height: 100%;
}

.nx26-port-card:hover {
  border-color: var(--nx26-orange);
  color: inherit;
}

.nx26-port-card__icon {
  margin-bottom: 100px;
  color: #C6C2C2;
  font-size: 40px;
}

.nx26-port-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.nx26-port-card__tags span {
  padding: 4px 12px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--nx26-orange) 33%, transparent);
  font-size: 14px;
  font-weight: 500;
  color: var(--nx26-orange);
}

.nx26-port-card_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.nx26-port-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--nx26-black);
}

.nx26-port-card__plus {
  min-width: 36px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nx26-orange);
  color: var(--nx26-white);
  font-size: 14px;
}

.nx26-port-growth {
  padding: 80px 0;
}

.nx26-port-growth__client {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.nx26-port-growth__client-value {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--nx26-orange);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: var(--nx26-black);
}

.nx26-port-growth__client-desc span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--nx26-black);
  max-width: 180px;
}

.nx26-port-growth__media {
  position: relative;
  overflow: hidden;
}

.nx26-port-growth__media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.nx26-port-growth__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 0;
}

.nx26-port-growth__play span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--nx26-black);
  color: var(--nx26-white);
  font-size: 22px;
  padding-left: 4px;
  transition: transform 0.25s var(--nx26-ease);
}

.nx26-port-growth__play:hover span {
  transform: scale(1.06);
}

/* Services page */
.nx26-serv-hero {
  padding: 190px 0 64px;
  background: var(--nx26-orange-soft);
  margin-top: -60px;
}

.nx26-serv-hero__title {
  margin: 0 0 40px;
  max-width: 1020px;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--nx26-orange);
}

.nx26-serv-hero__text-first {
  border-top: 1px solid var(--nx26-orange);
  padding-top: 24px;
}

.nx26-serv-hero__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--nx26-muted);
}

.nx26-serv-hero__text-first .nx26-serv-hero__text {
  color: #23252b;
}

.nx26-serv-hero__text-second .nx26-serv-hero__text {
  color: var(--nx26-black);
  font-weight: 500;
}

.nx26-serv-hero__text-second-arrow {
  text-align: right;
}

.nx26-serv-hero__text-second-arrow i {
  font-size: 24px;
  transform: rotate(-45deg);
}

.nx26-serv-list {
  padding: 64px 0 80px;
}

.nx26-serv-block {
  margin-bottom: 72px;
}

.nx26-serv-block--last {
  margin-bottom: 0;
}

.nx26-serv-block__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.nx26-serv-block__media img {
  width: 100%;
  display: block;
  aspect-ratio: 7 / 5;
  object-fit: cover;
  max-height: 370px;
}

.nx26-serv-block__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 0;
}

.nx26-serv-block__play span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.30);
  color: var(--nx26-white);
  font-size: 22px;
  padding-left: 4px;
  transition: transform 0.25s var(--nx26-ease);
}

.nx26-serv-block__play:hover span {
  transform: scale(1.06);
}

.nx26-serv-block__content {
  max-width: 480px;
  background: #88888916;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nx26-serv-block__title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--nx26-black);
}

.nx26-serv-block__subtitle {
  margin: 0 0 30px;
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-black);
}

.nx26-serv-block__text {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--nx26-muted);
}

.nx26-serv-block__link {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-orange);
  transition: opacity 0.2s var(--nx26-ease);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: auto;
}

.nx26-serv-block__link:hover {
  color: var(--nx26-orange);
  opacity: 0.8;
}

/* About page */
.nx26-about-bg-lg-shape {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}
.nx26-about-hero {
  padding: 140px 0 80px;
}

.nx26-about-hero__head {
  max-width: 1020px;
  margin: 0 0 60px;
  text-align: left;
}

.nx26-about-hero__title {
  margin: 0 0 20px;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--nx26-black);
  text-align: left;
}

.nx26-about-hero__title span {
  color: var(--nx26-orange);
}

.nx26-about-hero__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--nx26-black);
  text-align: left;
}

.nx26-about-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 36px;
  background: var(--nx26-orange);
  color: var(--nx26-white);
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  transition: background 0.2s var(--nx26-ease), transform 0.2s var(--nx26-ease);
}

.nx26-about-hero__btn:hover {
  color: var(--nx26-white);
  background: #e86f12;
  transform: translateY(-1px);
}

.nx26-about-hero__media {
  position: relative;
  margin-bottom: 56px;
  border-radius: 20px;
  overflow: hidden;
}

.nx26-about-hero__media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.nx26-about-hero__content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 380px;
  height: 100%;
}

.nx26-about-hero__time {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--nx26-white);
}

.nx26-about-hero__content-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--nx26-white);
}

.nx26-about-hero__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 0;
}

.nx26-about-hero__play span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--nx26-orange);
  font-size: 30px;
  padding-left: 4px;
  transition: transform 0.25s var(--nx26-ease);
}

.nx26-about-hero__play:hover span {
  transform: scale(1.06);
}

.nx26-about-stats__row {
  text-align: center;
}

.nx26-about-stats__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nx26-about-stats__number {
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: var(--nx26-black);
}

.nx26-about-stats__label {
  font-size: 20px;
  line-height: 1.5;
  color: var(--nx26-black);
}

.nx26-about-vision {
  padding: 80px 0;
  background: var(--nx26-white);
}

.nx26-about-vision__title {
  margin: 0 0 24px;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--nx26-black);
  max-width: 480px;
}

.nx26-about-vision__title span {
  color: var(--nx26-orange);
}

.nx26-about-vision__text {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.7;
  color: #494949;
}

.nx26-about-vision__text + .nx26-about-hero__btn {
  margin-top: 12px;
}

.nx26-about-vision__visual {
  position: relative;
}

.nx26-about-vision__image {
  width: 100%;
  display: block;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  max-height: 580px;
}

.nx26-about-vision__badge {
  position: absolute;
  top: -100px;
  left: -100px;
  z-index: 1;
  max-width: 240px;
  max-height: 252px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nx26-about-vision__badge strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--nx26-black);
}

.nx26-about-vision__badge span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--nx26-muted);
}

.nx26-about-why .nx26-port-card {
  height: 100%;
  justify-content: space-between;
}

.nx26-about-why .nx26-port-card .nx26-port-card__title {
    font-size: 20px;
}

.nx26-about-team {
  padding: 80px 0;
}

.nx26-about-team .nx26-team__intro {
  margin-bottom: 56px;
}

.nx26-about-testimonial {
  padding: 80px 0;
}

.nx26-about-testimonial__quote-icon {
  display: inline-flex;
  margin-bottom: 24px;
  font-size: 40px;
  color: #202020;
}

.nx26-about-testimonial__text {
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--nx26-black);
}

.nx26-about-testimonial__author strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: var(--nx26-black);
}

.nx26-about-testimonial__author span {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #505050;
  border-bottom: 1px solid var(--nx26-orange);
  padding-bottom: 4px;
}

.nx26-about-testimonial__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.nx26-about-testimonial__arrow {
  font-size: 24px;
  color: var(--nx26-black);
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s var(--nx26-ease), color 0.2s var(--nx26-ease);
}

.nx26-about-testimonial__arrow:hover {
  border-color: var(--nx26-orange);
  color: var(--nx26-orange);
}

.nx26-about-testimonial__pager {
  font-size: 15px;
  font-weight: 500;
  color: var(--nx26-black);
}

.nx26-about-testimonial__pager span {
  font-size: 20px;
}

.nx26-about-testimonial__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.nx26-about-testimonial__image {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(100%);
}

.nx26-about-testimonial__mark {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 120px;
}

.nx26-about-awards {
  padding: 80px 0 40px;
  background: #C4C4C430;
  margin-bottom: 60px;
}

.nx26-about-award__logo {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  color: var(--nx26-black);
}

.nx26-about-awards__text {
  margin: 0 0 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--nx26-black);
}

.nx26-about-award__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--nx26-muted);
}

/* Homepage */
.nx26-home-bg-shape {
  position: absolute;
  top: -160px;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: auto;
  z-index: -1;
}
.nx26-page-home {
  background: transparent !important;
}

.nx26-page-home .nx26-bg-shape {
  display: none;
}

.nx26-home-hero {
  padding: 160px 0 80px;
  overflow: hidden;
}

.nx26-home-hero__title {
  margin: 0 0 32px;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--nx26-black);
}

.nx26-home-hero__title span {
  color: var(--nx26-orange);
}

.nx26-home-hero__text {
  margin: 0 0 32px;
  max-width: 460px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #3B3232;
}

.nx26-home-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-white);
  background-color: var(--nx26-black);
  transition: opacity 0.2s var(--nx26-ease);
  padding: 3px 3px 3px 12px;
  border-radius: 5px;
}

.nx26-home-hero__cta:hover {
  color: var(--nx26-white);
  opacity: 0.85;
}

.nx26-home-hero__cta:hover i {
  background: var(--nx26-white);
  color: var(--nx26-black);
}

.nx26-home-hero__cta i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nx26-white);
  color: var(--nx26-black);
  font-size: 14px;
  border-radius: 5px;
}

.nx26-home-hero__right {
  position: relative;
  min-height: 200px;
}

.nx26-home-hero__growth {
  margin: 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--nx26-orange);
  text-align: right;
}

.nx26-home-hero__bars {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  opacity: 0.35;
}

.nx26-home-hero__bars span {
  display: block;
  width: 3px;
  background: var(--nx26-black);
  border-radius: 2px;
}

.nx26-home-hero__bars span:nth-child(1) { height: 40px; }
.nx26-home-hero__bars span:nth-child(2) { height: 72px; }
.nx26-home-hero__bars span:nth-child(3) { height: 56px; }
.nx26-home-hero__bars span:nth-child(4) { height: 96px; }
.nx26-home-hero__bars span:nth-child(5) { height: 48px; }
.nx26-home-hero__bars span:nth-child(6) { height: 80px; }
.nx26-home-hero__bars span:nth-child(7) { height: 60px; }
.nx26-home-hero__bars span:nth-child(8) { height: 104px; }
.nx26-home-hero__bars span:nth-child(9) { height: 44px; }
.nx26-home-hero__bars span:nth-child(10) { height: 68px; }

.nx26-home-side-label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #666666;
  flex-shrink: 0;
  min-width: 220px;
}

.nx26-home-about {
  padding: 100px 0;
}

.nx26-home-about__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.nx26-home-about__heading {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--nx26-black);
  max-width: 620px;
}

.nx26-home-about__layout,
.nx26-home-servlist__layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.nx26-home-about__main,
.nx26-home-servlist__main {
  flex: 1;
  min-width: 0;
}

.nx26-home-about__media {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.nx26-home-about__media img {
  width: 100%;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  max-width: 635px;
  max-height: 82px;
  margin: 0 auto;
}

.nx26-home-about__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.nx26-home-about__label {
  flex-basis: 20%;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: #666666;
}

.nx26-home-about__content p {
  flex-basis: 55%;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: #494949;
}

.nx26-home-about__link {
  flex-basis: 15%;
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-black);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--nx26-orange);
  transition: opacity 0.2s var(--nx26-ease);
  align-self: center;
}

.nx26-home-servlist {
  padding: 0 0 100px;
  background: var(--nx26-white);
}

.nx26-home-servlist__intro {
  margin: 0 0 48px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  color: #494949;
}

.nx26-home-servlist__rows {
  margin-top: 50px;
}

.nx26-home-serv-row {
  position: relative;
  border-bottom: 1px solid #F8F1F1;
}

.nx26-home-serv-row.is-active {
  padding-left: 40px;
}

.nx26-home-serv-row__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr 48px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border: none;
  background: transparent;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.nx26-home-serv-row__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 400;
  border: 2px solid #000000;
  border-radius: 999px;
  color: var(--nx26-muted);
  transition: color 0.25s var(--nx26-ease);
}

.nx26-home-serv-row.is-active .nx26-home-serv-row__num {
  border-color:var(--nx26-orange);
  color: var(--nx26-orange);
}

.nx26-home-serv-row__title {
  max-height: 120px;
  overflow: hidden;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--nx26-black);
  transition: opacity 0.25s var(--nx26-ease), max-height 0.25s var(--nx26-ease);
}

.nx26-home-serv-row.is-active .nx26-home-serv-row__title {
  color: var(--nx26-orange);
}

.nx26-home-serv-row__dots {
  display: grid;
  grid-template-columns: repeat(2, 12px);
  gap: 4px;
  justify-self: end;
}

.nx26-home-serv-row__dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #666666;
}

.nx26-home-serv-row__dots.one i:nth-child(1) {
  background: var(--nx26-orange);
}
.nx26-home-serv-row__dots.two i:nth-child(2) {
  background: var(--nx26-orange);
}
.nx26-home-serv-row__dots.three i:nth-child(3) {
  background: var(--nx26-orange);
}
.nx26-home-serv-row__dots.four i:nth-child(4) {
  background: var(--nx26-orange);
}

.nx26-home-serv-row.is-active .nx26-home-serv-row__dots i:nth-child(1),
.nx26-home-serv-row.is-active .nx26-home-serv-row__dots i:nth-child(2),
.nx26-home-serv-row.is-active .nx26-home-serv-row__dots i:nth-child(3) {
  background: var(--nx26-orange);
}

.nx26-home-serv-row__preview {
  display: none;
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  width: 320px;
  pointer-events: none;
  max-height: 180px;
  z-index: 2;
}

.nx26-home-serv-row.is-active .nx26-home-serv-row__preview {
  display: block;
}

.nx26-home-serv-row__preview img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  transform: rotate(40deg);
  object-fit: cover;
  max-width: 320px;
  max-height: 180px;
}

.nx26-home-section__eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--nx26-black);
}

.nx26-home-section__title {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--nx26-black);
}

.nx26-home-section__title span {
  color: var(--nx26-orange);
}

.nx26-home-section__text {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--nx26-muted);
}

.nx26-home-work {
  padding: 100px 0;
  background: #C4C4C430;
}

.nx26-home-work__label {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--nx26-black);
}

.nx26-home-work__title {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--nx26-black);
}

.nx26-home-work__title span {
  color: var(--nx26-orange);
}

.nx26-home-work .nx26-port-card {
  height: 100%;
  box-shadow: 0 0 4px 0 #00000010;
}

.nx26-home-partners {
  padding: 100px 0;
  background: var(--nx26-white);
}

.nx26-home-partners__title {
  margin: 0 0 56px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--nx26-black);
}

.nx26-home-partners__title span {
  color: var(--nx26-orange);
}

.nx26-home-partners__grid .col-md-3 {
  border: 1px solid #E0E0E0;
}

.nx26-home-partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.nx26-home-partners__logo img {
  max-width: 160px;
  max-height: 50px;
}

.nx26-home-process {
  padding: 100px 0;
  background: #C4C4C412;
}

.nx26-home-process__head {
  margin-bottom: 48px;
}

.nx26-home-process__heading {
  margin: 0;
  max-width: 520px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--nx26-black);
}

.nx26-home-process__heading span {
  color: var(--nx26-orange);
}

.nx26-home-process__list {
  border-top: 1px solid color-mix(in srgb, var(--nx26-orange) 42%, transparent);
}

.nx26-home-process__row {
  padding: 36px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--nx26-orange) 42%, transparent);
}

.nx26-home-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1.5px solid var(--nx26-orange);
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  color: var(--nx26-orange);
}

.nx26-home-process__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 400;
  color: var(--nx26-black);
  max-width: 520px;
}

.nx26-home-process__text {
  margin: 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: #494949;
}

.nx26-home-process__img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-width: 212px;
  max-height: 128px;
  margin-left: auto;
}

.nx26-home-insights {
  padding: 80px 0;
  background: var(--nx26-white);
}

.nx26-home-insights__head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.nx26-home-insights__head-subtitle {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--nx26-black);
}

.nx26-home-insights__card {
  padding: 40px 36px;
  background: var(--nx26-white);
  border: 1px solid #EFEFEF;
  border-radius: 32px;
  box-shadow: 0 0 10px 0 color-mix(in srgb, var(--nx26-orange) 25%, transparent);
}

.nx26-home-insights__title, .nx26-home-insights__head-title {
  margin: 0 0 40px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--nx26-black);
}

.nx26-home-insights__title span, .nx26-home-insights__head-title span {
  color: var(--nx26-orange);
}

.nx26-home-insights__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--nx26-black);
  opacity: 0.72;
}

.nx26-home-insights__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.nx26-home-insights__cta-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 50px 36px;
  background: var(--nx26-black);
  border-radius: 32px;
  text-align: center;
}

.nx26-home-insights__cta-label {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--nx26-white);
}

.nx26-home-insights__cta-title {
  margin: 0 0 30px;
  max-width: 360px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--nx26-white);
}

.nx26-home-insights__cta-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nx26-home-insights__cta-link:hover {
  color: var(--nx26-orange);
}

.nx26-home-insights__metrics {
  height: 100%;
  padding: 44px 40px;
  background: var(--nx26-white);
  border: 1px solid #EFEFEF;
  border-radius: 32px;
  box-shadow: 0 0 10px 0 color-mix(in srgb, var(--nx26-orange) 25%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.nx26-home-insights__metric {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nx26-home-insights__ring {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border: 1px solid var(--nx26-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx26-home-insights__ring span {
  font-size: 32px;
  font-weight: 700;
  color: var(--nx26-black);
}

.nx26-home-insights__metric-label {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nx26-orange);
}

.nx26-home-insights__metric p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--nx26-black);
  opacity: 0.72;
  max-width: 420px;
}

.nx26-home-orbit {
  padding: 60px 0;
  background: var(--nx26-white);
}

.nx26-home-orbit__wrap {
  position: relative;
  width: min(100%, 680px);
  margin: 0 auto;
}

.nx26-home-orbit__wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.nx26-home-orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed #D8D8D8;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.nx26-home-orbit__ring--1 {
  width: 38%;
  height: 38%;
}

.nx26-home-orbit__ring--2 {
  width: 62%;
  height: 62%;
}

.nx26-home-orbit__ring--3 {
  width: 88%;
  height: 88%;
}

.nx26-home-orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.nx26-home-orbit__count {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: var(--nx26-orange);
}

.nx26-home-orbit__icon {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nx26-white);
  border: 1px solid #ECECEC;
  border-radius: 50%;
  font-size: 20px;
  color: var(--nx26-black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  z-index: 3;
}

.nx26-home-orbit__icon--1 { top: 8%; left: 50%; transform: translateX(-50%); }
.nx26-home-orbit__icon--2 { top: 22%; right: 14%; }
.nx26-home-orbit__icon--3 { top: 50%; right: 2%; transform: translateY(-50%); }
.nx26-home-orbit__icon--4 { bottom: 22%; right: 14%; }
.nx26-home-orbit__icon--5 { bottom: 8%; left: 50%; transform: translateX(-50%); }
.nx26-home-orbit__icon--6 { bottom: 22%; left: 14%; }
.nx26-home-orbit__icon--7 { top: 50%; left: 2%; transform: translateY(-50%); }

.nx26-home-orbit__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  background: var(--nx26-white);
  border: 1px solid #ECECEC;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--nx26-black);
  white-space: nowrap;
  z-index: 4;
}

.nx26-home-orbit__badge--1 {
  top: 38%;
  left: 0;
  transform: translateX(-8%);
  background: #E8F0FF;
  border-color: #D0E0FF;
}

.nx26-home-orbit__badge--2 {
  top: 12%;
  right: 0;
  transform: translateX(8%);
}

.nx26-home-orbit__badge--3 {
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
}

.nx26-home-orbit__badge-avatars {
  display: inline-flex;
}

.nx26-home-orbit__badge-avatars img {
  width: 28px;
  height: 28px;
  border: 2px solid var(--nx26-white);
  border-radius: 50%;
  object-fit: cover;
  margin-left: -8px;
}

.nx26-home-orbit__badge-avatars img:first-child {
  margin-left: 0;
}

.nx26-home-team {
  padding: 80px 0;
  background: #F5F5F5;
}

.nx26-home-blog {
  padding: 80px 0;
  background: var(--nx26-white);
}

.nx26-home-blog__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}
.nx26-home-blog__title {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--nx26-black);
  max-width: 420px;
}
.nx26-home-blog__title span {
  color: var(--nx26-orange);
}

.nx26-home-blog__link {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--nx26-orange);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nx26-home-blog__link:hover {
  color: var(--nx26-black);
}

.nx26-home-pricing {
  padding: 80px 0;
}

.nx26-home-faq {
  padding: 80px 0;
  background: var(--nx26-white);
}