/* ═══════════════════════════════════════════════════════════════════════
   NX Elements v1.1.0 — Frontend Styles
   Primary: #004eff | All selectors verified against widget render() output
   ═══════════════════════════════════════════════════════════════════════ */
:root {
  --nx-primary:       #004eff;
  --nx-primary-dark:  #0038cc;
  --nx-primary-light: #e8edff;
}

/* Animations */
@keyframes nx-fadeIn      { from{opacity:0} to{opacity:1} }
@keyframes nx-fadeInDown  { from{opacity:0;transform:translateY(-30px)} to{opacity:1;transform:translateY(0)} }
@keyframes nx-fadeInLeft  { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes nx-fadeInRight { from{opacity:0;transform:translateX(30px)}  to{opacity:1;transform:translateX(0)} }
@keyframes nx-zoomIn      { from{opacity:0;transform:scale(0.8)} to{opacity:1;transform:scale(1)} }
@keyframes nx-slideInLeft { from{transform:translateX(-100%)} to{transform:translateX(0)} }
@keyframes nx-bounceIn {
  0%{opacity:0;transform:scale(0.3)} 50%{opacity:1;transform:scale(1.05)}
  70%{transform:scale(0.9)} 100%{transform:scale(1)}
}
.nx-anim-fadeIn      { animation: nx-fadeIn      both; }
.nx-anim-fadeInDown  { animation: nx-fadeInDown  both; }
.nx-anim-fadeInLeft  { animation: nx-fadeInLeft  both; }
.nx-anim-fadeInRight { animation: nx-fadeInRight both; }
.nx-anim-zoomIn      { animation: nx-zoomIn      both; }
.nx-anim-slideInLeft { animation: nx-slideInLeft both; }
.nx-anim-bounceIn    { animation: nx-bounceIn    both; }

/* ── NX SITE LOGO ─────────────────────────────────────────────────────── */
.nx-site-logo { display: inline-block; line-height: 0; }
.nx-site-logo.nx-logo--inline { display: inline-flex; align-items: center; gap: 10px; }
.nx-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.nx-logo-img  { display: block; height: auto; max-width: 100%; transition: all 0.3s ease; }
.nx-logo-caption { display: block; line-height: 1.4; margin-top: 6px; }
.nx-logo--inline .nx-logo-caption { display: inline-block; margin-top: 0; }
.nx-logo-hover--fade       .nx-logo-link:hover .nx-logo-img { opacity: 0.7; }
.nx-logo-hover--scale-up   .nx-logo-link:hover .nx-logo-img { transform: scale(1.08); }
.nx-logo-hover--scale-down .nx-logo-link:hover .nx-logo-img { transform: scale(0.92); }
.nx-logo-hover--grayscale  .nx-logo-link:hover .nx-logo-img { filter: grayscale(100%); }
.nx-logo-hover--brighten   .nx-logo-link:hover .nx-logo-img { filter: brightness(1.3); }
.nx-logo-hover--rotate-cw  .nx-logo-link:hover .nx-logo-img { transform: rotate(15deg); }
.nx-logo-hover--rotate-ccw .nx-logo-link:hover .nx-logo-img { transform: rotate(-15deg); }

/* ── NX PAGE TITLE ────────────────────────────────────────────────────── */
.nx-page-title-wrap { position: relative; }
.nx-page-title      { margin: 0; line-height: 1.2; position: relative; z-index: 1; }
.nx-page-title-inner{ display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.nx-title-icon      { display: inline-flex; align-items: center; line-height: 1; }
.nx-page-subtitle   { margin: 0; line-height: 1.6; position: relative; z-index: 1; }
.nx-title-separator { border: 0; border-top: 1px solid #e0e0e0; margin: 12px 0; }
.nx-title-highlight { display: inline; padding: 0 6px; border-radius: 3px; }
.nx-title-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 6em; font-weight: 900; white-space: nowrap; pointer-events: none;
  user-select: none; line-height: 1; z-index: 0;
}
.nx-typewriter::after  { content: '|'; animation: nx-blink 0.7s step-start infinite; }
@keyframes nx-blink    { 50%{opacity:0} }
.nx-breadcrumbs        { font-size: 14px; line-height: 1.5; display: flex; flex-wrap: wrap; align-items: center; gap: 4px; position: relative; z-index: 1; }
.nx-breadcrumbs a      { text-decoration: none; transition: color 0.2s; }
.nx-breadcrumbs a:hover{ text-decoration: underline; }
.nx-bc-sep             { opacity: 0.6; }

/* ── NX NAV MENU ──────────────────────────────────────────────────────── */
.nx-nav-menu-wrapper { position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.nx-nav-menu         { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; flex-wrap: wrap; flex: 1; }
.nx-layout-vertical .nx-nav-menu { flex-direction: column; align-items: flex-start; }
.nx-nav-menu li      { position: relative; }
.nx-nav-menu a       { display: flex; align-items: center; gap: 6px; text-decoration: none; white-space: nowrap; transition: color 0.2s, background-color 0.2s; line-height: 1; padding: 12px 16px; }
.nx-sub-ind-chevron .nx-nav-menu li.menu-item-has-children > a::after { content: ' ›'; font-size: 0.9em; }
.nx-sub-ind-arrow   .nx-nav-menu li.menu-item-has-children > a::after { content: ' ▾'; font-size: 0.8em; }
.nx-sub-ind-plus    .nx-nav-menu li.menu-item-has-children > a::after { content: ' +'; font-weight: bold; }
.nx-indicator-underline .nx-nav-menu > li.current-menu-item > a,
.nx-indicator-underline .nx-nav-menu > li.current-menu-ancestor > a { text-decoration: underline; text-underline-offset: 4px; }
.nx-indicator-border-bottom .nx-nav-menu > li.current-menu-item > a,
.nx-indicator-border-bottom .nx-nav-menu > li.current-menu-ancestor > a { border-bottom: 2px solid currentColor; }
.nx-indicator-dot .nx-nav-menu > li.current-menu-item::after,
.nx-indicator-dot .nx-nav-menu > li.current-menu-ancestor::after { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: currentColor; margin: -4px auto 0; }
.nx-nav-menu .sub-menu { position: absolute; top: 100%; left: 0; list-style: none; margin: 0; padding: 4px 0; background: #fff; min-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-radius: 6px; z-index: 9999; pointer-events: none; opacity: 0; transition: opacity 0.2s, transform 0.2s; }
.nx-nav-menu .sub-menu .sub-menu { top: 0; left: 100%; }
.nx-nav-menu li:hover > .sub-menu,
.nx-nav-menu li.nx-dd-open > .sub-menu { opacity: 1; pointer-events: auto; }
.nx-dd-anim-slide .nx-nav-menu .sub-menu  { transform: translateY(-8px); }
.nx-dd-anim-slide .nx-nav-menu li:hover > .sub-menu,
.nx-dd-anim-slide .nx-nav-menu li.nx-dd-open > .sub-menu { transform: translateY(0); }
.nx-dd-anim-zoom  .nx-nav-menu .sub-menu  { transform: scale(0.95) translateY(-4px); transform-origin: top left; }
.nx-dd-anim-zoom  .nx-nav-menu li:hover > .sub-menu,
.nx-dd-anim-zoom  .nx-nav-menu li.nx-dd-open > .sub-menu { transform: scale(1) translateY(0); }
.nx-nav-menu .sub-menu a { padding: 10px 20px; display: block; }
.nx-has-sticky.nx-sticky-active { position: fixed; top: 0; left: 0; right: 0; z-index: 9990; background: #fff; animation: nx-fadeInDown 0.3s both; }
.nx-has-sticky.nx-sticky-active.nx-sticky-shadow { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }
.nx-has-sticky.nx-sticky-shrink.nx-sticky-active .nx-nav-menu a { padding-top: 8px; padding-bottom: 8px; transition: padding 0.3s; }
.nx-hamburger { display: none; cursor: pointer; background: none; border: none; padding: 8px; line-height: 1; font-size: 22px; align-items: center; justify-content: center; transition: color 0.2s, background-color 0.2s; }
.nx-hamburger .nx-close-icon { display: none; }
.nx-hamburger[aria-expanded="true"] .nx-hamburger-icon { display: none; }
.nx-hamburger[aria-expanded="true"] .nx-close-icon     { display: inline-flex; }
.nx-nav-extras { display: flex; align-items: center; gap: 8px; }
.nx-search-toggle { background: none; border: none; cursor: pointer; font-size: 16px; padding: 8px; line-height: 1; transition: color 0.2s; }
.nx-search-bar { display: none; align-items: center; gap: 4px; }
.nx-search-bar.nx-open { display: flex; }
.nx-search-bar input[type="search"] { border: 1px solid #ddd; border-radius: 4px; padding: 7px 12px; font-size: 14px; outline: none; }
.nx-search-bar input[type="search"]:focus { border-color: var(--nx-primary); }
.nx-search-submit { background: var(--nx-primary); color: #fff; border: none; border-radius: 4px; padding: 8px 12px; cursor: pointer; }
.nx-cart-link  { position: relative; display: inline-flex; align-items: center; text-decoration: none; font-size: 20px; padding: 6px; transition: opacity 0.2s; }
.nx-cart-link:hover { opacity: 0.75; }
.nx-cart-count { position: absolute; top: -2px; right: -6px; background: #e53935; color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 3px; }
@media (max-width: 768px) {
  .nx-hamburger { display: flex; margin-left: auto; }
  .nx-nav-menu-wrapper .nx-nav-menu { display: none; flex-direction: column; width: 100%; order: 99; }
  .nx-nav-menu-wrapper .nx-nav-menu.nx-menu-open { display: flex; }
  .nx-nav-menu-wrapper .nx-nav-menu > li { width: 100%; }
  .nx-nav-menu-wrapper .nx-nav-menu a { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; }
  .nx-nav-menu-wrapper .nx-nav-menu .sub-menu { position: static; opacity: 1; pointer-events: auto; box-shadow: none; border-radius: 0; display: none; background: #f8f8f8; }
  .nx-nav-menu-wrapper .nx-nav-menu .sub-menu.nx-open { display: block; }
  .nx-nav-menu-wrapper .nx-nav-menu .sub-menu a { padding-left: 32px; }
  .nx-drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9997; }
  .nx-drawer-overlay.nx-open { display: block; }
  .nx-mobile-drawer-left .nx-nav-menu.nx-menu-open,
  .nx-mobile-drawer-right .nx-nav-menu.nx-menu-open { position: fixed; top: 0; bottom: 0; z-index: 9998; width: 280px; overflow-y: auto; padding: 20px 0; background: #fff; display: flex; flex-direction: column; }
  .nx-mobile-drawer-left  .nx-nav-menu.nx-menu-open { left: 0;  animation: nx-slideInLeft 0.3s both; }
  .nx-mobile-drawer-right .nx-nav-menu.nx-menu-open { right: 0; left: auto; animation: nx-slideInRight 0.3s both; }
  @keyframes nx-slideInRight { from{transform:translateX(100%)} to{transform:translateX(0)} }
}

/* ── NX FORM ──────────────────────────────────────────────────────────── */
.nx-form-wrapper    { width: 100%; box-sizing: border-box; }
.nx-form-row        { display: flex; flex-wrap: wrap; gap: 16px; }
.nx-form-field-wrapper { display: flex; flex-direction: column; min-width: 0; box-sizing: border-box; }
.nx-form-label      { display: block; margin-bottom: 6px; font-weight: 500; cursor: pointer; }
.nx-form-required   { color: #e53935; margin-left: 2px; font-size: 0.9em; }
.nx-form-input,
.nx-form-textarea,
.nx-form-select     { width: 100%; display: block; box-sizing: border-box; border: 1px solid #ddd; border-radius: 4px; padding: 12px 16px; font-size: 15px; line-height: 1.5; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; background: #fff; color: #333; appearance: none; -webkit-appearance: none; }
.nx-form-input:focus,
.nx-form-textarea:focus,
.nx-form-select:focus { outline: none; border-color: var(--nx-primary); box-shadow: 0 0 0 3px rgba(0,78,255,0.15); }
.nx-form-input.nx-has-error,
.nx-form-textarea.nx-has-error,
.nx-form-select.nx-has-error { border-color: #e53935; }
.nx-form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.nx-field-error { font-size: 12px; color: #e53935; margin-top: 4px; line-height: 1.4; }
.nx-form-choices   { display: flex; flex-direction: column; gap: 8px; }
.nx-choice-label   { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.nx-choice-label input { width: auto; margin: 0; flex-shrink: 0; }
.nx-acceptance-label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; line-height: 1.5; font-size: 14px; }
.nx-acceptance-label input { width: auto; margin-top: 3px; flex-shrink: 0; }
.nx-acceptance-label a { color: var(--nx-primary); }
.nx-char-count { font-size: 12px; color: #888; text-align: right; margin-top: 4px; }
.nx-char-count.nx-over-limit { color: #e53935; font-weight: 600; }
.nx-label-floating .nx-form-field-wrapper { position: relative; }
.nx-label-floating .nx-form-label { position: absolute; top: 13px; left: 16px; pointer-events: none; transition: all 0.18s; color: #888; font-size: 15px; margin: 0; z-index: 1; background: #fff; padding: 0 4px; }
.nx-label-floating .nx-form-field-wrapper.nx-float-active .nx-form-label,
.nx-label-floating .nx-form-field-wrapper:focus-within .nx-form-label { top: -8px; left: 12px; font-size: 11px; color: var(--nx-primary); }
.nx-form-nav     { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.nx-form-submit-wrap { flex: 1; }
.nx-form-submit-wrap--center { text-align: center; }
.nx-form-submit-wrap--right  { text-align: right; }
.nx-form-submit-wrap--full .nx-form-submit { width: 100%; }
.nx-form-submit  { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none; padding: 14px 32px; border-radius: 4px; font-size: 15px; font-weight: 600; background: var(--nx-primary); color: #fff; transition: background 0.2s, transform 0.2s; line-height: 1; white-space: nowrap; }
.nx-form-submit:hover { background: var(--nx-primary-dark); transform: translateY(-1px); }
.nx-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.nx-form-prev, .nx-form-next { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; border: 2px solid var(--nx-primary); padding: 12px 24px; border-radius: 4px; font-size: 14px; font-weight: 600; background: transparent; color: var(--nx-primary); transition: all 0.2s; }
.nx-form-prev:hover, .nx-form-next:hover { background: var(--nx-primary); color: #fff; }
.nx-form-message { border-radius: 4px; margin-bottom: 20px; font-size: 15px; line-height: 1.6; padding: 14px 18px; }
.nx-form-message--success { background: #e8f5e9; color: #1d7a1d; border-left: 4px solid #43a047; }
.nx-form-message--error   { background: #ffebee; color: #c62828; border-left: 4px solid #e53935; }
.nx-form-progress { margin-bottom: 24px; }
.nx-progress-track { width: 100%; height: 6px; background: #e0e0e0; border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.nx-progress-fill  { height: 100%; background: var(--nx-primary); border-radius: 10px; transition: width 0.4s ease; }
.nx-step-dots { display: flex; gap: 8px; justify-content: center; }
.nx-step-dot  { width: 28px; height: 28px; border-radius: 50%; background: #e0e0e0; color: #666; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: background 0.3s, color 0.3s; }
.nx-step-dot.active    { background: var(--nx-primary); color: #fff; }
.nx-step-dot.completed { background: #43a047; color: #fff; }
.nx-form-step  { transition: opacity 0.3s; }
@media (max-width:600px) {
  .nx-form-field-wrapper { width: 100% !important; }
  .nx-form-nav { flex-direction: column; align-items: stretch; }
  .nx-form-prev, .nx-form-next { justify-content: center; }
}

/* ── NX ANIMATED HEADING ─────────────────────────────────────────────── */
.nx-animated-heading-wrap { }
.nx-animated-heading { margin: 0; line-height: 1.2; }
.nx-ah-animated { display: inline; }
.nx-ah-cursor   { animation: nx-blink 0.7s step-start infinite; }
@keyframes nx-ah-slide-up   { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes nx-ah-slide-down { from{opacity:1;transform:translateY(0)} to{opacity:0;transform:translateY(-20px)} }
@keyframes nx-ah-flip-in    { from{opacity:0;transform:rotateX(-90deg)} to{opacity:1;transform:rotateX(0)} }
@keyframes nx-ah-flip-out   { from{opacity:1;transform:rotateX(0)} to{opacity:0;transform:rotateX(90deg)} }

/* ── NX FLIP BOX ──────────────────────────────────────────────────────── */
.nx-flip-box   { perspective: 1000px; height: 300px; cursor: pointer; }
.nx-flip-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.6s ease; }
.nx-flip-front,
.nx-flip-back  { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; overflow: hidden; border-radius: 8px; }
.nx-flip-front { background: #f8f9ff; }
.nx-flip-back  { background: var(--nx-primary); }
.nx-fb-icon    { margin-bottom: 14px; line-height: 1; }
.nx-fb-title   { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.nx-fb-desc    { font-size: 14px; line-height: 1.6; }
.nx-fb-btn     { margin-top: 18px; display: inline-block; padding: 10px 24px; border-radius: 4px; background: #fff; color: var(--nx-primary); text-decoration: none; font-weight: 600; font-size: 14px; transition: opacity 0.2s; }
.nx-fb-btn:hover { opacity: 0.85; color: var(--nx-primary); }

/* ── NX PRICE TABLE ───────────────────────────────────────────────────── */
.nx-price-table { position: relative; padding: 40px 32px; border-radius: 12px; background: #fff; text-align: center; border: 1px solid #e2e8f0; transition: transform 0.2s, box-shadow 0.2s; }
.nx-price-table:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,78,255,0.12); }
.nx-price-table.nx-featured { border-color: var(--nx-primary); box-shadow: 0 0 0 2px var(--nx-primary); }
.nx-pt-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--nx-primary); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .5px; padding: 5px 18px; border-radius: 20px; white-space: nowrap; }
.nx-pt-icon  { font-size: 36px; margin-bottom: 16px; }
.nx-pt-name  { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.nx-pt-desc  { font-size: 14px; color: #64748b; margin-bottom: 20px; }
.nx-pt-price { margin: 20px 0; }
.nx-pt-original { font-size: 16px; color: #94a3b8; text-decoration: line-through; display: block; margin-bottom: 4px; }
.nx-pt-price-row { display: flex; align-items: flex-start; justify-content: center; gap: 2px; }
.nx-pt-currency    { font-size: 22px; font-weight: 700; color: var(--nx-primary); padding-top: 10px; }
.nx-pt-price-amount{ font-size: 56px; font-weight: 900; color: var(--nx-primary); line-height: 1; }
.nx-pt-period  { font-size: 14px; color: #94a3b8; align-self: flex-end; padding-bottom: 8px; }
.nx-pt-price-note { font-size: 12px; color: #94a3b8; margin-top: 4px; }
.nx-pt-divider { border: 0; border-top: 1px solid #e2e8f0; margin: 20px 0; }
.nx-pt-features { list-style: none; margin: 0 0 24px; padding: 0; text-align: left; }
.nx-pt-feat { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; border-bottom: 1px solid #f1f5f9; }
.nx-pt-feat:last-child { border-bottom: none; }
.nx-pt-feat--crossed { opacity: 0.45; text-decoration: line-through; }
.nx-pt-feat-icon { flex-shrink: 0; width: 18px; display: flex; align-items: center; justify-content: center; }
.nx-pt-btn { display: block; width: 100%; background: var(--nx-primary); color: #fff; padding: 14px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 15px; transition: background 0.2s, transform 0.15s; text-align: center; box-sizing: border-box; }
.nx-pt-btn:hover { background: var(--nx-primary-dark); transform: translateY(-1px); color: #fff; }
.nx-pt-footer-note { margin-top: 14px; font-size: 12px; color: #94a3b8; }

/* ── NX COUNTDOWN ─────────────────────────────────────────────────────── */
.nx-countdown { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.nx-cd-unit   { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.nx-cd-block  { width: 90px; height: 90px; background: var(--nx-primary-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nx-cd-circle { width: 90px; height: 90px; background: var(--nx-primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nx-cd-digit  { font-size: 36px; font-weight: 900; color: var(--nx-primary); line-height: 1; }
.nx-cd-label  { font-size: 12px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .5px; }
.nx-cd-sep    { font-size: 40px; font-weight: 700; color: var(--nx-primary); opacity: 0.4; line-height: 90px; margin-bottom: 26px; }
.nx-cd-style-inline .nx-countdown { gap: 4px; }
.nx-cd-style-inline .nx-cd-unit   { flex-direction: row; align-items: baseline; gap: 4px; }
.nx-cd-style-inline .nx-cd-block  { width: auto; height: auto; background: none; padding: 0; }
.nx-cd-style-inline .nx-cd-digit  { font-size: 32px; }
.nx-cd-message { padding: 16px; text-align: center; font-size: 18px; font-weight: 600; color: var(--nx-primary); }

/* ── NX CALL TO ACTION ────────────────────────────────────────────────── */
.nx-cta { position: relative; overflow: hidden; background: linear-gradient(135deg,#f0f4ff,#e8edff); padding: 60px; border-radius: 12px; text-align: center; }
.nx-cta-layout-side-by-side { display: flex; align-items: center; justify-content: space-between; text-align: left; gap: 40px; }
.nx-cta-layout-left-aligned { text-align: left; }
.nx-cta-icon        { font-size: 32px; margin-bottom: 12px; }
.nx-cta-sub-heading { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--nx-primary); margin-bottom: 8px; }
.nx-cta-heading     { margin: 0 0 12px; font-size: 28px; font-weight: 800; line-height: 1.2; }
.nx-cta-desc        { margin: 0; font-size: 16px; color: #64748b; line-height: 1.6; }
.nx-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; justify-content: center; }
.nx-cta-layout-side-by-side .nx-cta-buttons { margin-top: 0; flex-shrink: 0; justify-content: flex-start; }
.nx-cta-layout-left-aligned .nx-cta-buttons { justify-content: flex-start; }
.nx-cta-btn1, .nx-cta-btn2 { display: inline-flex; align-items: center; padding: 14px 32px; border-radius: 6px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.nx-cta-btn1 { background: var(--nx-primary); color: #fff; }
.nx-cta-btn1:hover { background: var(--nx-primary-dark); color: #fff; transform: translateY(-2px); }
.nx-cta-btn2 { background: transparent; color: var(--nx-primary); border: 2px solid var(--nx-primary); }
.nx-cta-btn2:hover { background: var(--nx-primary); color: #fff; }
@media (max-width:768px) {
  .nx-cta { padding: 40px 24px; }
  .nx-cta-layout-side-by-side { flex-direction: column; text-align: center; }
  .nx-cta-layout-side-by-side .nx-cta-buttons { justify-content: center; }
}

/* ── NX TESTIMONIAL ───────────────────────────────────────────────────── */
.nx-testimonial { position: relative; overflow: hidden; padding: 32px; background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; }
.nx-testi-layout-centered { text-align: center; }
.nx-testi-layout-centered .nx-testi-author { justify-content: center; }
.nx-testi-stars { font-size: 18px; color: #f59e0b; letter-spacing: 1px; margin-bottom: 14px; }
.nx-testi-quote-icon { font-size: 48px; line-height: 1; display: block; margin-bottom: 8px; }
.nx-testi-quote-icon--bg { position: absolute; top: -10px; left: 16px; font-size: 120px; pointer-events: none; opacity: 0.06; }
.nx-testi-quote  { margin: 0 0 24px; font-size: 15px; line-height: 1.7; font-style: italic; border: none; padding: 0; quotes: none; }
.nx-testi-author { display: flex; align-items: center; gap: 14px; }
.nx-testi-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.nx-testi-author-info { display: flex; flex-direction: column; gap: 2px; }
.nx-testi-name   { font-weight: 700; font-size: 14px; color: #1a1a2e; text-decoration: none; }
.nx-testi-role   { font-size: 12px; color: #94a3b8; }

/* ── NX PROGRESS BAR ─────────────────────────────────────────────────── */
.nx-pb-item + .nx-pb-item { margin-top: 20px; }
.nx-pb-header  { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.nx-pb-icon    { font-size: 14px; flex-shrink: 0; display: inline-flex; align-items: center; }
.nx-pb-label   { flex: 1; font-size: 14px; font-weight: 600; }
.nx-pb-pct     { font-size: 13px; font-weight: 700; color: var(--nx-primary); }
.nx-pb-track   { height: 14px; background: #e8edf8; border-radius: 20px; overflow: hidden; position: relative; }
.nx-pb-fill    { height: 100%; background: var(--nx-primary); border-radius: 20px; display: flex; align-items: center; justify-content: flex-end; overflow: hidden; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.nx-pb-pct-inside { font-size: 10px; font-weight: 700; color: #fff; padding-right: 8px; white-space: nowrap; }
.nx-pb-style-striped .nx-pb-fill { background-image: repeating-linear-gradient(45deg,rgba(255,255,255,0.15) 0,rgba(255,255,255,0.15) 10px,transparent 10px,transparent 20px); animation: nx-stripe 1s linear infinite; }
@keyframes nx-stripe { from{background-position:0 0} to{background-position:40px 0} }
