:root {
  --ink: #0c0c0a;
  --ink-90: #141412;
  --ink-80: #1e1e1b;
  --ink-70: #2b2b27;
  --ink-40: #7a7a72;
  --ink-10: #e8e7e0;
  --ink-05: #f4f3ee;
  --sage: #3d6b43;
  --sage-mid: #5a8f62;
  --sage-glow: #7ab882;
  --gold: #b8922a;
  --gold-light: #d4ae52;
  --teal: #2dd4bf;
  --radius: 10px;
  --container: 1120px;
}

html { scroll-behavior: smooth; }
body.noxglobal-landing-page,
.noxglobal-root {
  background: var(--ink);
  color: var(--ink-10);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.7;
  margin: 0;
}

.noxglobal-root * { box-sizing: border-box; }
.noxglobal-root a { color: inherit; text-decoration: none; }
.noxglobal-root img { max-width: 100%; height: auto; display: block; }

.ngx-container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.ngx-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(12, 12, 10, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ngx-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.noxglobal-root .ngx-nav__logo,
.ngx-nav a img.ngx-nav__logo,
img.ngx-nav__logo {
  height: 28px !important;
  max-height: 28px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain;
  transition: transform .35s ease, filter .35s ease;
}
.ngx-nav__logo:hover { transform: scale(1.05); filter: drop-shadow(0 0 12px rgba(184,146,42,.45)); }
.noxglobal-root .ngx-footer img {
  height: 32px !important;
  max-height: 32px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
}
.ngx-nav__links { display: flex; gap: 1.25rem; align-items: center; }
.ngx-nav__links a { color: var(--ink-40); font-size: .9rem; font-weight: 600; }
.ngx-nav__links a:hover { color: var(--sage-glow); }
@media (max-width: 768px) {
  .ngx-nav__links { display: none; }
}

.ngx-hero {
  min-height: 100vh;
  padding: 7rem 0 4rem;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 22% 44%, rgba(255,214,120,.1), rgba(0,0,0,.24) 48%, rgba(0,0,0,.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.36), rgba(0,0,0,.12)),
    rgba(0,0,0,.28);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ngx-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.ngx-hero__content { position: relative; z-index: 1; max-width: 42rem; }
.ngx-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .85rem;
  margin-bottom: 1.25rem;
}
.ngx-badge__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-light);
}
.ngx-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(90,143,98,.25), 0 12px 34px rgba(0,0,0,.72);
}
.ngx-hero h1 em {
  font-style: normal;
  text-shadow: 0 0 10px rgba(255,255,255,.72);
}
.ngx-hero p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #fff;
  max-width: 36rem;
  margin: 0 0 1.5rem;
}
.ngx-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
/* Beat Elementor/Hello global button + accent (often pink) overrides */
.noxglobal-root .ngx-btn,
.noxglobal-root a.ngx-btn,
.noxglobal-root button.ngx-btn,
.elementor-widget-shortcode .ngx-btn,
.elementor-widget-shortcode a.ngx-btn,
.elementor-widget-shortcode button.ngx-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .4rem;
  border-radius: 999px !important;
  padding: .85rem 1.5rem !important;
  font-weight: 700 !important;
  border: 1px solid transparent !important;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: none !important;
  background-image: none !important;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  font-family: inherit !important;
  line-height: 1.2 !important;
}
.noxglobal-root .ngx-btn:hover,
.noxglobal-root a.ngx-btn:hover,
.noxglobal-root button.ngx-btn:hover {
  transform: translateY(-2px);
}
.noxglobal-root .ngx-btn--gold,
.noxglobal-root a.ngx-btn--gold,
.noxglobal-root button.ngx-btn--gold,
.elementor-widget-shortcode .ngx-btn--gold {
  background: #b8922a !important;
  background-color: #b8922a !important;
  color: #f4f3ee !important;
  border-color: transparent !important;
  box-shadow: 0 0 28px rgba(184,146,42,.28) !important;
}
.noxglobal-root .ngx-btn--gold:hover,
.noxglobal-root a.ngx-btn--gold:hover,
.noxglobal-root button.ngx-btn--gold:hover,
.elementor-widget-shortcode .ngx-btn--gold:hover {
  background: #c9a334 !important;
  background-color: #c9a334 !important;
  color: #f4f3ee !important;
}
.noxglobal-root .ngx-btn--outline,
.noxglobal-root a.ngx-btn--outline,
.noxglobal-root button.ngx-btn--outline,
.elementor-widget-shortcode .ngx-btn--outline {
  background: rgba(0,0,0,.25) !important;
  background-color: rgba(0,0,0,.25) !important;
  border-color: rgba(255,255,255,.35) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.noxglobal-root .ngx-btn--outline:hover,
.noxglobal-root a.ngx-btn--outline:hover,
.noxglobal-root button.ngx-btn--outline:hover {
  background: rgba(255,255,255,.08) !important;
  background-color: rgba(255,255,255,.08) !important;
  color: #fff !important;
}
.noxglobal-root .ngx-btn--sage,
.noxglobal-root a.ngx-btn--sage,
.noxglobal-root button.ngx-btn--sage,
.elementor-widget-shortcode .ngx-btn--sage {
  background: #5a8f62 !important;
  background-color: #5a8f62 !important;
  color: #0c0c0a !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.noxglobal-root .ngx-btn--sage:hover,
.noxglobal-root a.ngx-btn--sage:hover,
.noxglobal-root button.ngx-btn--sage:hover {
  background: #6aa372 !important;
  background-color: #6aa372 !important;
  color: #0c0c0a !important;
}
.ngx-btn--full { width: 100% !important; }
.ngx-hero__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
@media (max-width: 640px) {
  .ngx-hero__points { grid-template-columns: 1fr; }
}
.ngx-hero__point {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.ngx-hero__point-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  flex-shrink: 0;
}
.ngx-hero__point-icon svg {
  width: 18px;
  height: 18px;
}
.ngx-hero__points strong { display: block; color: #fff; font-size: .9rem; }
.ngx-hero__points span { color: rgba(255,255,255,.65); font-size: .75rem; }

.ngx-ticker {
  overflow: hidden;
  background: rgba(20,20,18,.92);
  border-block: 1px solid rgba(255,255,255,.08);
}
.ngx-ticker__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: .85rem 1rem;
  animation: ngx-ticker 22s linear infinite;
}
.ngx-ticker__track span {
  white-space: nowrap;
  font-weight: 700;
  color: var(--ink-05);
}
.ngx-ticker__track span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  margin-right: .75rem;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(184,146,42,.55);
}
@keyframes ngx-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

.ngx-section { padding: 5.5rem 0; position: relative; overflow: hidden; }
.ngx-section--muted { background: rgba(20,20,18,.55); }
.ngx-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--sage-mid);
  margin-bottom: .75rem;
}
.ngx-eyebrow__icon {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
}
.ngx-section h2 {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 0 0 .75rem;
  letter-spacing: -0.02em;
  color: var(--ink-05);
}
.ngx-lead {
  text-align: center;
  color: var(--ink-40);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.ngx-grid {
  display: grid;
  gap: 1.25rem;
}
.ngx-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.ngx-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.ngx-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 900px) {
  .ngx-grid--4, .ngx-grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .ngx-grid--4, .ngx-grid--3, .ngx-grid--2 { grid-template-columns: 1fr; }
}

.ngx-card {
  background: rgba(30,30,27,.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  padding: 1.35rem;
  backdrop-filter: blur(18px);
  transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .35s ease, box-shadow .45s ease;
}
.ngx-card:hover {
  transform: translateY(-6px);
  border-color: rgba(90,143,98,.55);
  box-shadow: 0 0 48px rgba(61,107,67,.18);
}
.ngx-card h3 { margin: .75rem 0 .4rem; color: var(--ink-05); font-size: 1.05rem; }
.ngx-card p { margin: 0; color: var(--ink-40); font-size: .9rem; }
.ngx-card--center { text-align: center; }
.ngx-card--center .ngx-icon { margin-inline: auto; }
.ngx-card--row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}
.ngx-card--row h3 { margin-top: 0; }
.ngx-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(90,143,98,.18);
  color: var(--sage-glow);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.ngx-icon__svg {
  width: 24px;
  height: 24px;
  display: block;
}
.ngx-icon--sm {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.ngx-icon--sm .ngx-icon__svg { width: 20px; height: 20px; }
.ngx-icon--center { margin-inline: auto; }
.ngx-icon--sage { background: rgba(90,143,98,.2); color: #7ab882; }
.ngx-icon--teal { background: rgba(45,212,191,.16); color: #2dd4bf; }
.ngx-icon--gold { background: rgba(184,146,42,.18); color: #d4ae52; }
.ngx-icon--coral { background: rgba(248,113,113,.16); color: #fb7185; }
.ngx-icon--sky { background: rgba(56,189,248,.16); color: #38bdf8; }
.ngx-icon--violet { background: rgba(167,139,250,.16); color: #a78bfa; }

.ngx-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 1.5rem;
  padding: 0 .55rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  margin: 0 auto .85rem;
}
.ngx-plan__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .35rem;
}
.ngx-note {
  text-align: center;
  color: var(--ink-40);
  font-size: .75rem;
  margin-top: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}
.ngx-note__icon {
  width: 14px;
  height: 14px;
  color: var(--sage-glow);
  flex-shrink: 0;
}
.ngx-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.ngx-footer__ico {
  width: 16px;
  height: 16px;
  color: var(--sage-glow);
  flex-shrink: 0;
}
.ngx-fab__icon {
  width: 26px;
  height: 26px;
  display: block;
}
.ngx-notice__icon {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: .1rem;
}

.ngx-plan {
  position: relative;
  padding: 1.75rem;
}
.ngx-plan__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink-05);
  margin: .75rem 0 1rem;
}
.ngx-plan__price small { font-size: 1rem; color: var(--ink-40); font-weight: 500; }
.ngx-plan__old { text-decoration: line-through; color: var(--ink-40); font-size: .95rem; margin-right: .4rem; }
.ngx-plan ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.ngx-plan li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .9rem;
  margin-bottom: .55rem;
  color: var(--ink-05);
}
.ngx-plan li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: .15rem;
  background-color: var(--sage-glow);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.ngx-pill {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: var(--sage-mid);
  color: var(--ink);
  margin-bottom: .4rem;
}
.ngx-pill--gold { background: var(--gold); color: var(--ink-05); }

.ngx-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .ngx-split { grid-template-columns: 1fr; }
}
.ngx-split__copy h2 { text-align: left; }
.ngx-split__copy .ngx-eyebrow { text-align: left; justify-content: flex-start; }
.ngx-split__copy p { color: var(--ink-40); }

.ngx-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 4rem 0 2rem;
  background: var(--ink);
}
.ngx-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 800px) {
  .ngx-footer__grid { grid-template-columns: 1fr; }
}
.ngx-footer h3 { color: var(--ink-05); margin: 0 0 1rem; }
.ngx-footer a, .ngx-footer p { color: var(--ink-40); font-size: .9rem; }
.ngx-footer a:hover { color: var(--sage-glow); }
.ngx-footer__links { display: flex; flex-direction: column; gap: .45rem; }
.ngx-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--ink-40);
  font-size: .85rem;
}

.ngx-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.ngx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.ngx-reveal.is-visible { opacity: 1; transform: none; }
html:not(.ngx-js) .ngx-reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ngx-ticker__track, .ngx-reveal { animation: none; transition: none; }
  .ngx-reveal { opacity: 1; transform: none; }
}

/* Modal / popup */
.ngx-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}
.ngx-modal.is-open { display: flex; }
.ngx-modal__panel {
  width: min(100%, 440px);
  background: var(--ink-90);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  max-height: 90vh;
  overflow: auto;
}
.ngx-modal__panel h2 { margin: 0 0 .5rem; font-size: 1.45rem; color: var(--ink-05); }
.ngx-modal__panel > p { color: var(--ink-40); margin: 0 0 1.25rem; font-size: .95rem; }
.ngx-field { margin-bottom: 1rem; }
.ngx-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--ink-05); }
.ngx-field input {
  width: 100%;
  border-radius: .65rem;
  border: 1px solid var(--ink-70);
  background: var(--ink);
  color: var(--ink-05);
  padding: .7rem .85rem;
  font-size: .95rem;
}
.ngx-field input:focus { outline: 2px solid rgba(90,143,98,.55); border-color: transparent; }
.ngx-error { color: #f87171; font-size: .8rem; margin-top: .3rem; display: none; }
.ngx-error.is-visible { display: block; }
.ngx-hint { color: var(--ink-40); font-size: .75rem; margin-top: .35rem; }
.ngx-modal__close {
  float: right;
  background: transparent;
  border: 0;
  color: var(--ink-40);
  font-size: 1.4rem;
  cursor: pointer;
}
.ngx-notice-box {
  display: flex;
  gap: .75rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .85rem;
  padding: .9rem;
  color: var(--ink-40);
  font-size: .85rem;
  margin: 1rem 0 1.25rem;
}
.ngx-step { display: none; }
.ngx-step.is-active { display: block; }

.ngx-simple {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
}
.ngx-simple h1 { color: var(--ink-05); margin-bottom: .5rem; }
.ngx-simple h2 { text-align: left; font-size: 1.2rem; margin: 1.75rem 0 .5rem; }
.ngx-simple p { color: var(--ink-40); }
.ngx-faq details {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0;
}
.ngx-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-05);
}
.ngx-faq details p { margin: .75rem 0 0; }

/* Hide Hello/Elementor chrome noise on landing */
.noxglobal-landing-page .site-header,
.noxglobal-landing-page header.site-header,
.noxglobal-landing-page .site-footer,
.noxglobal-landing-page footer.site-footer {
  display: none !important;
}
.noxglobal-landing-page .elementor-location-header,
.noxglobal-landing-page .elementor-location-footer {
  display: none !important;
}
