/* =============================================
   INVOX FINANCE — style.css
   Palette: #1F6F5F #52c5cf #52c5cf #EEEEEE
   ============================================= */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nx-c1: #1F6F5F;
  --nx-c2: #52c5cf;
  --nx-c3: #52c5cf;
  --nx-c4: #EEEEEE;
  --nx-dark: #0d1f1c;
  --nx-dark2: #132b26;
  --nx-white: #ffffff;
  --nx-text: #1a2e2b;
  --nx-text-light: #4a6a65;
  --nx-border: rgba(47,160,132,0.18);
  --nx-shadow: 0 8px 40px rgba(31,111,95,0.12);
  --nx-radius: 14px;
  --nx-radius-sm: 8px;
  --nx-transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nx-font-display: 'Fraunces', Georgia, serif;
  --nx-font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--nx-font-body);
  color: var(--nx-text);
  background: var(--nx-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* --- Container --- */
.nx-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--nx-font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
em { font-style: italic; color: var(--nx-c2); }

/* --- Buttons --- */
.nx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--nx-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--nx-transition);
  white-space: nowrap;
}

.nx-btn--primary {
  background: var(--nx-c2);
  color: var(--nx-white);
  box-shadow: 0 4px 20px rgba(47,160,132,0.35);
}
.nx-btn--primary:hover {
  background: var(--nx-c1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(31,111,95,0.4);
}
.nx-btn--primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.nx-btn--secondary {
  background: transparent;
  color: var(--nx-c1);
  border: 2px solid var(--nx-c2);
}
.nx-btn--secondary:hover {
  background: var(--nx-c2);
  color: var(--nx-white);
}

.nx-btn--outline {
  background: transparent;
  color: var(--nx-white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.nx-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--nx-c3);
}

.nx-btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* --- Labels & Eyebrows --- */
.nx-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nx-c2);
  background: rgba(47,160,132,0.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.nx-label--light {
  color: var(--nx-c3);
  background: rgba(111,207,151,0.15);
}

.nx-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nx-c3);
  margin-bottom: 16px;
}

/* --- Section Headers --- */
.nx-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.nx-section-header h2 { margin-bottom: 14px; }
.nx-section-header p { color: var(--nx-text-light); font-size: 1.05rem; }
.nx-section-header--light h2 { color: var(--nx-white); }
.nx-section-header--light p { color: rgba(238,238,238,0.7); }

/* =============================================
   NAVIGATION
   ============================================= */
.nx-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--nx-transition);
}

.nx-nav.nx-nav--scrolled {
  background: rgba(13,31,28,0.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.nx-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nx-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nx-font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--nx-white);
  flex-shrink: 0;
}
.nx-logo__icon {
  color: var(--nx-c3);
  font-size: 1rem;
}
.nx-logo em { font-style: italic; color: var(--nx-c3); }

.nx-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nx-nav__links a {
  color: rgba(238,238,238,0.75);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--nx-transition);
}
.nx-nav__links a:hover { color: var(--nx-c3); }

.nx-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nx-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nx-white);
  border-radius: 2px;
  transition: all var(--nx-transition);
}

/* =============================================
   HERO
   ============================================= */
.nx-hero {
  background: var(--nx-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.nx-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,160,132,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,160,132,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.nx-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.nx-hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(47,160,132,0.28) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.nx-hero__orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(31,111,95,0.2) 0%, transparent 70%);
  bottom: -80px; left: 5%;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.nx-hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nx-hero__content { color: var(--nx-white); }

.nx-hero__title {
  margin: 12px 0 20px;
  color: var(--nx-white);
  font-weight: 700;
}
.nx-hero__title em {
  font-style: italic;
  color: var(--nx-c3);
  display: block;
}

.nx-hero__sub {
  color: rgba(238,238,238,0.75);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.nx-hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.nx-stat { text-align: left; }
.nx-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--nx-font-display);
  color: var(--nx-c3);
  line-height: 1;
}
.nx-stat span {
  font-size: 0.78rem;
  color: rgba(238,238,238,0.55);
  letter-spacing: 0.04em;
}

.nx-stat__sep {
  width: 1px;
  height: 36px;
  background: rgba(238,238,238,0.15);
}

/* FORM CARD */
.nx-f3a9 {
  background: var(--nx-white);
  border-radius: var(--nx-radius);
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(47,160,132,0.2);
  animation: formAppear 0.8s ease both 0.3s;
}

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

.nx-f3a9::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--nx-radius) + 2px);
  background: linear-gradient(135deg, var(--nx-c2), var(--nx-c3), var(--nx-c1));
  z-index: -1;
  opacity: 0.6;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.nx-form-card__header { text-align: center; margin-bottom: 24px; }

.nx-form-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nx-font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--nx-c1);
  margin-bottom: 8px;
}
.nx-form-logo .nx-logo__icon { color: var(--nx-c2); }
.nx-form-logo em { font-style: italic; color: var(--nx-c2); }

.nx-form-card__tagline {
  font-size: 0.85rem;
  color: var(--nx-text-light);
}

.nx-field { margin-bottom: 12px; }

.nx-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--nx-border);
  border-radius: var(--nx-radius-sm);
  font-family: var(--nx-font-body);
  font-size: 0.9rem;
  color: var(--nx-text);
  background: var(--nx-c4);
  outline: none;
  transition: all var(--nx-transition);
}
.nx-input::placeholder { color: rgba(26,46,43,0.4); }
.nx-input:focus {
  border-color: var(--nx-c2);
  background: var(--nx-white);
  box-shadow: 0 0 0 3px rgba(47,160,132,0.15);
}
.nx-input.nx-valid { border-color: var(--nx-c3); }
.nx-input.nx-invalid { border-color: #e05c5c; box-shadow: 0 0 0 3px rgba(224,92,92,0.12); }

.nx-form-note {
  font-size: 0.77rem;
  color: var(--nx-text-light);
  text-align: center;
  margin: 10px 0 14px;
  line-height: 1.5;
}

.nx-form-badge {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(47,160,132,0.07);
  border-radius: var(--nx-radius-sm);
  border: 1px solid rgba(47,160,132,0.15);
  font-size: 0.78rem;
  color: var(--nx-c1);
  line-height: 1.4;
}
.nx-form-badge svg { flex-shrink: 0; margin-top: 2px; }

/* =============================================
   PARTNERS
   ============================================= */
.nx-partners {
  padding: 32px 0;
  background: var(--nx-c4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nx-partners__label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nx-text-light);
  margin-bottom: 20px;
}

.nx-partners__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.nx-partner-logo {
  font-family: var(--nx-font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(31,111,95,0.35);
  letter-spacing: 0.05em;
  transition: color var(--nx-transition);
}

.nx-partner-logo img{
  max-width: 120px;
  object-fit: contain;
  aspect-ratio: 16/9;
}
.nx-partner-logo:hover { color: var(--nx-c2); }

/* =============================================
   ABOUT
   ============================================= */
.nx-about {
  padding: 110px 0;
  background: var(--nx-white);
}

.nx-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nx-about__visual {
  position: relative;
  height: 460px;
  background: linear-gradient(135deg, var(--nx-dark) 0%, var(--nx-dark2) 100%);
  border-radius: 24px;
  overflow: hidden;
}

.nx-about__bg-shape {
  position: absolute;
  inset: 0;
  background: url('images/stop.jpg');
  background-size: cover;
  background-position: center;
  /* background: radial-gradient(ellipse at 70% 30%, rgba(47,160,132,0.25) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(31,111,95,0.2) 0%, transparent 55%); */
}

.nx-about__card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(47,160,132,0.25);
  border-radius: var(--nx-radius);
  padding: 20px 24px;
  color: var(--nx-white);
  min-width: 160px;
  transition: transform var(--nx-transition);
}
.nx-about__card:hover { transform: translateY(-4px); }
.nx-about__card strong { display: block; font-size: 1.6rem; font-family: var(--nx-font-display); color: var(--nx-c3); }
.nx-about__card span { font-size: 0.8rem; color: rgba(238,238,238,0.6); }
.nx-about__card__icon { font-size: 1.2rem; margin-bottom: 8px; }

.nx-about__card--1 { top: 40px; left: 32px; animation: cardFloat1 6s ease-in-out infinite; }
.nx-about__card--2 { top: 160px; right: 32px; animation: cardFloat2 7s ease-in-out infinite; }
.nx-about__card--3 { bottom: 50px; left: 60px; animation: cardFloat1 8s ease-in-out infinite reverse; }

@keyframes cardFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes cardFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.nx-about__text h2 { margin: 0 0 20px; }
.nx-about__text p { color: var(--nx-text-light); margin-bottom: 16px; font-size: 1rem; }

.nx-feature-list { margin: 28px 0 36px; }
.nx-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(47,160,132,0.08);
  color: var(--nx-text);
}
.nx-feature-list li:last-child { border-bottom: none; }
.nx-feature-list__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--nx-c2);
  flex-shrink: 0;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.nx-how {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.nx-how__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--nx-c1) 0%, var(--nx-dark) 100%);
  z-index: -1;
}

.nx-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.nx-step {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(111,207,151,0.15);
  border-radius: var(--nx-radius);
  padding: 40px 32px;
  color: var(--nx-white);
  transition: all var(--nx-transition);
  position: relative;
  overflow: hidden;
}
.nx-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47,160,132,0.08), transparent);
  opacity: 0;
  transition: opacity var(--nx-transition);
}
.nx-step:hover { border-color: rgba(111,207,151,0.5); transform: translateY(-4px); }
.nx-step:hover::after { opacity: 1; }

.nx-step__num {
  font-family: var(--nx-font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(111,207,151,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.nx-step__icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47,160,132,0.15);
  border-radius: 12px;
  margin-bottom: 20px;
}

.nx-step h3 { color: var(--nx-white); margin-bottom: 14px; }
.nx-step p { color: rgba(238,238,238,0.65); font-size: 0.93rem; line-height: 1.7; margin-bottom: 24px; }

.nx-step__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--nx-c3);
  font-size: 0.88rem;
  font-weight: 600;
  transition: gap var(--nx-transition);
}
.nx-step__link::after { content: '→'; }
.nx-step__link:hover { gap: 10px; }

.nx-step__connector {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  padding: 0 4px;
}

/* =============================================
   SECURITY
   ============================================= */
.nx-security {
  padding: 110px 0;
  background: var(--nx-c4);
}

.nx-security__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nx-sec-card {
  background: var(--nx-white);
  border-radius: var(--nx-radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--nx-transition);
  border: 1px solid transparent;
}
.nx-sec-card:hover {
  transform: translateY(-6px);
  border-color: var(--nx-border);
  box-shadow: var(--nx-shadow);
}

.nx-sec-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nx-c2), var(--nx-c3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--nx-transition);
}
.nx-sec-card:hover .nx-sec-card__accent { transform: scaleX(1); }

.nx-sec-card__icon {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(47,160,132,0.08);
  border-radius: 14px;
  margin-bottom: 22px;
}

.nx-sec-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.nx-sec-card p { color: var(--nx-text-light); font-size: 0.9rem; line-height: 1.7; }

/* =============================================
   REVIEWS
   ============================================= */
.nx-reviews {
  padding: 110px 0;
  background: var(--nx-white);
}

.nx-reviews__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}

.nx-review-card {
  background: var(--nx-c4);
  border-radius: var(--nx-radius);
  padding: 40px 36px;
  position: relative;
  border: 1px solid rgba(47,160,132,0.1);
  transition: all var(--nx-transition);
}
.nx-review-card:hover {
  border-color: var(--nx-border);
  box-shadow: var(--nx-shadow);
}

.nx-review-card--featured {
  background: linear-gradient(135deg, var(--nx-dark) 0%, var(--nx-dark2) 100%);
  color: var(--nx-white);
  border-color: rgba(47,160,132,0.3);
}
.nx-review-card--featured p { color: rgba(238,238,238,0.8); }

.nx-review-card__quote {
  font-family: var(--nx-font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--nx-c3);
  opacity: 0.3;
  margin-bottom: 12px;
  font-style: italic;
}

.nx-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f5c518;
  font-size: 1rem;
  margin-bottom: 18px;
}
.nx-stars span {
  font-size: 0.8rem;
  color: var(--nx-text-light);
}
.nx-review-card--featured .nx-stars span { color: rgba(238,238,238,0.5); }

.nx-review-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--nx-text-light);
  margin-bottom: 28px;
}

.nx-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nx-review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nx-c2), var(--nx-c1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nx-white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.nx-review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--nx-text);
}
.nx-review-card--featured .nx-review-author strong { color: var(--nx-white); }
.nx-review-author span {
  font-size: 0.8rem;
  color: var(--nx-text-light);
}
.nx-review-card--featured .nx-review-author span { color: rgba(238,238,238,0.5); }

/* =============================================
   EXPERTS
   ============================================= */
.nx-experts {
  padding: 100px 0;
  background: var(--nx-dark);
  overflow: hidden;
}

.nx-experts__track-wrap {
  overflow: hidden;
  margin-top: 10px;
}

.nx-experts__track {
  display: flex;
  gap: 24px;
  animation: expertScroll 28s linear infinite;
  width: max-content;
}

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

.nx-experts__track:hover { animation-play-state: paused; }

.nx-expert-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(47,160,132,0.18);
  border-radius: var(--nx-radius);
  padding: 32px 28px;
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  transition: all var(--nx-transition);
}
.nx-expert-card:hover { border-color: rgba(47,160,132,0.5); background: rgba(255,255,255,0.08); }

.nx-expert-card__initial {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nx-c1), var(--nx-c2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nx-white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  overflow: hidden;
}

.nx-expert-card__initial img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nx-expert-card blockquote {
  font-size: 0.88rem;
  color: rgba(238,238,238,0.7);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.nx-expert-card cite {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--nx-c3);
  font-style: normal;
}

/* =============================================
   FAQ
   ============================================= */
.nx-faq {
  padding: 110px 0;
  background: var(--nx-white);
}

.nx-faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.nx-faq__sidebar h2 { margin: 0 0 16px; }
.nx-faq__sidebar p { color: var(--nx-text-light); margin-bottom: 28px; font-size: 0.95rem; }

.nx-faq__item {
  border-bottom: 1px solid rgba(47,160,132,0.12);
}

.nx-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--nx-font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--nx-text);
  text-align: left;
  transition: color var(--nx-transition);
}
.nx-faq__q:hover { color: var(--nx-c2); }
.nx-faq__q[aria-expanded="true"] { color: var(--nx-c1); }

.nx-faq__chevron {
  flex-shrink: 0;
  transition: transform var(--nx-transition);
  color: var(--nx-c2);
}
.nx-faq__q[aria-expanded="true"] .nx-faq__chevron { transform: rotate(180deg); }

.nx-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.nx-faq__item--open .nx-faq__a { max-height: 300px; }

.nx-faq__a p {
  padding-bottom: 20px;
  color: var(--nx-text-light);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* =============================================
   CTA REGISTER
   ============================================= */
.nx-cta-register {
  padding: 110px 0;
  background: linear-gradient(155deg, var(--nx-c1) 0%, var(--nx-dark) 100%);
  position: relative;
  overflow: hidden;
}
.nx-cta-register::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,207,151,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,207,151,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.nx-cta-register__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nx-cta-register__info { color: var(--nx-white); }
.nx-cta-register__info h2 { color: var(--nx-white); margin-bottom: 16px; }
.nx-cta-register__info p { color: rgba(238,238,238,0.7); font-size: 1rem; line-height: 1.75; margin-bottom: 32px; }

.nx-cta-register__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nx-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(238,238,238,0.8);
}
.nx-bullet span { color: var(--nx-c3); font-weight: 700; }

.nx-f3a9--cta { animation: none; }
.nx-f3a9--cta h3 {
  font-family: var(--nx-font-display);
  font-size: 1.3rem;
  color: var(--nx-c1);
  margin-bottom: 20px;
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.nx-footer {
  background: var(--nx-dark);
  padding: 80px 0 0;
}

.nx-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(47,160,132,0.12);
}

.nx-logo--footer { margin-bottom: 16px; }
.nx-footer__brand p {
  color: rgba(238,238,238,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 360px;
}

.nx-footer__links { display: flex; gap: 60px; }
.nx-footer__col h4 {
  color: var(--nx-c3);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.nx-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.nx-footer__col a {
  font-size: 0.88rem;
  color: rgba(238,238,238,0.5);
  transition: color var(--nx-transition);
}
.nx-footer__col a:hover { color: var(--nx-c3); }

.nx-footer__disclaimer {
  padding: 32px 0;
  border-bottom: 1px solid rgba(47,160,132,0.08);
}
.nx-footer__disclaimer p {
  font-size: 0.78rem;
  color: rgba(238,238,238,0.3);
  line-height: 1.7;
  margin-bottom: 8px;
}
.nx-footer__disclaimer strong { color: rgba(238,238,238,0.5); }

.nx-footer__bottom {
  padding: 20px 0;
}
.nx-footer__bottom p {
  font-size: 0.82rem;
  color: rgba(238,238,238,0.25);
  text-align: center;
}

/* =============================================
   SCROLL TOP
   ============================================= */
.nx-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--nx-c2);
  color: var(--nx-white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--nx-transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(47,160,132,0.4);
}
.nx-scroll-top.nx-visible { opacity: 1; transform: translateY(0); }
.nx-scroll-top:hover { background: var(--nx-c1); transform: translateY(-2px); }

/* =============================================
   ANIMATIONS
   ============================================= */
[data-nx-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-nx-animate].nx-animated {
  opacity: 1;
  transform: translateY(0);
}
[data-nx-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-nx-animate]:nth-child(3) { transition-delay: 0.2s; }
[data-nx-animate]:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .nx-security__grid { grid-template-columns: repeat(2, 1fr); }
  .nx-hero__layout { gap: 40px; }
  .nx-about__grid { gap: 48px; }
}

@media (max-width: 900px) {
  .nx-nav__links { display: none; }
  .nx-nav .nx-btn--outline { display: none; }
  .nx-burger { display: flex; }

  .nx-nav__links.nx-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--nx-dark);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }
  .nx-nav__links.nx-open a { font-size: 1.4rem; color: var(--nx-white); }

  .nx-hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nx-hero__stats { justify-content: center; }
  .nx-hero__sub { margin: 0 auto 36px; }
  .nx-hero__form-wrap { order: -1; }

  .nx-about__grid,
  .nx-faq__layout,
  .nx-cta-register__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nx-about__visual { height: 300px; }

  .nx-steps {
    flex-direction: column;
  }
  .nx-step__connector { transform: rotate(90deg); width: auto; height: 32px; }

  .nx-reviews__grid { grid-template-columns: 1fr; }
  .nx-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .nx-footer__links { gap: 32px; }
}

@media (max-width: 600px) {
  .nx-security__grid { grid-template-columns: 1fr; }
  .nx-cta-register__bullets { grid-template-columns: 1fr; }
  .nx-hero { padding: 100px 0 60px; }
  .nx-f3a9 { padding: 28px 20px; }
  .nx-partner-logo { font-size: 0.9rem; }
  .nx-partners__logos { gap: 24px; }
}


.logo{
  max-width: 150px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}