/* ============================================================
   Nexials AI Academy × Tutiplast — Proposta de Capacitação
   Tokens fiéis ao Design System Nexials AI Academy
   ============================================================ */

@import url("https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap");

:root {
  --nx-void: #0a0a0b;
  --nx-surface: #141417;
  --nx-surface-2: #1b1b1f;
  --nx-surface-3: #222227;
  --nx-border: #2a2a30;
  --nx-border-2: #3a3a42;

  --nx-gold: #e8b84b;
  --nx-gold-bright: #f2c744;
  --nx-champagne: #f3e3b0;
  --nx-amber: #c8841f;
  --nx-bronze: #a9651a;
  --nx-gold-grad: linear-gradient(135deg, #f8e6a8, #e8b84b 42%, #c8841f 78%, #a9651a);

  --nx-teal: #48c2b4;

  --nx-white: #f5f1e6;
  --nx-text-2: #9b978c;
  --nx-mute: #6e6b62;

  --nx-font-display: "Clash Display", system-ui, sans-serif;
  --nx-font-sans: "Manrope", system-ui, sans-serif;
  --nx-font-mono: "JetBrains Mono", ui-monospace, monospace;

  --nx-radius-sm: 10px;
  --nx-radius-md: 14px;
  --nx-radius-lg: 16px;
  --nx-radius-xl: 24px;
  --nx-radius-pill: 100px;

  --nx-glow-sm: 0 6px 16px rgba(232, 184, 75, 0.18);
  --nx-glow: 0 0 24px rgba(232, 184, 75, 0.35);
  --nx-glow-lg: 0 0 60px rgba(232, 184, 75, 0.5);
  --nx-focus-ring: 0 0 0 3px rgba(232, 184, 75, 0.16);

  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--nx-void);
  color: var(--nx-white);
  font-family: var(--nx-font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: rgba(232, 184, 75, 0.28); color: #fff; }

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

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(700px circle at 78% -8%, rgba(232, 184, 75, 0.12), transparent 60%),
    radial-gradient(620px circle at 8% 12%, rgba(72, 194, 180, 0.07), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 11, 0.72);
  border-bottom: 1px solid var(--nx-border);
}
.nav__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__orb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--nx-gold-grad); box-shadow: var(--nx-glow-sm);
  flex: none;
}
.brand__mark {
  width: 30px; height: 30px; flex: none; object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(232, 184, 75, 0.35));
}
.brand__name { font-family: var(--nx-font-display); font-weight: 600; font-size: 15px; letter-spacing: 0.01em; }
.brand__name small { display: block; font-family: var(--nx-font-mono); font-size: 10px; color: var(--nx-text-2); font-weight: 400; letter-spacing: 0.08em; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: 14px; color: var(--nx-text-2); transition: color 0.15s; }
.nav__links a:hover { color: var(--nx-white); }
@media (max-width: 820px) { .nav__links a:not(.btn) { display: none; } }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--nx-font-sans); font-weight: 600; font-size: 14px;
  border: 1px solid transparent; border-radius: var(--nx-radius-pill);
  height: 46px; padding: 0 26px; cursor: pointer;
  transition: transform 0.12s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--nx-gold-grad); color: #16120a; box-shadow: var(--nx-glow-sm); }
.btn--primary:hover { box-shadow: var(--nx-glow); }
.btn--outline { background: transparent; color: var(--nx-gold); border-color: var(--nx-gold); }
.btn--outline:hover { background: rgba(232, 184, 75, 0.08); }
.btn--ghost { background: var(--nx-surface-3); color: var(--nx-white); border-color: var(--nx-border-2); }
.btn--ghost:hover { border-color: var(--nx-gold); color: var(--nx-gold); }
.btn--sm { height: 38px; padding: 0 18px; font-size: 13px; }

/* ---------------- Badges ---------------- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--nx-radius-pill); border: 1px solid transparent; line-height: 1;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge--gold { background: rgba(232, 184, 75, 0.12); color: var(--nx-gold); border-color: rgba(232, 184, 75, 0.3); }
.badge--teal { background: rgba(72, 194, 180, 0.12); color: var(--nx-teal); border-color: rgba(72, 194, 180, 0.3); }
.badge--mute { background: var(--nx-surface-3); color: var(--nx-text-2); border-color: var(--nx-border-2); }

.tag {
  display: inline-flex; align-items: center; font-family: var(--nx-font-mono); font-size: 12px;
  color: var(--nx-text-2); background: var(--nx-surface-2); border: 1px solid var(--nx-border);
  border-radius: 7px; padding: 4px 10px;
}

/* ---------------- Section scaffolding ---------------- */
section { padding: 86px 0; position: relative; }
.eyebrow {
  font-family: var(--nx-font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--nx-gold); margin-bottom: 16px;
}
.sec-title {
  font-family: var(--nx-font-display); font-weight: 600; line-height: 1.08;
  font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.01em;
}
.sec-sub { color: var(--nx-text-2); font-size: 17px; max-width: 640px; margin-top: 16px; }
.text-gold {
  background: var(--nx-gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------------- Hero ---------------- */
.hero { padding: 64px 0 72px; position: relative; overflow: hidden; }
#hero-fx {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; display: block;
  -webkit-mask-image: radial-gradient(120% 100% at 70% 30%, #000 45%, transparent 92%);
  mask-image: radial-gradient(120% 100% at 70% 30%, #000 45%, transparent 92%);
}
.hero__orb {
  position: absolute; top: 2%; right: -10px; width: 300px; height: 300px;
  display: grid; place-items: center; z-index: 0;
}
.hero__orb::after {
  content: ""; position: absolute; inset: 6%; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,75,0.45), rgba(232,184,75,0.12) 45%, transparent 70%);
  filter: blur(6px);
}
.hero__orb img {
  position: relative; z-index: 1; width: 78%; height: 78%; object-fit: contain;
  filter: drop-shadow(0 0 36px rgba(232, 184, 75, 0.55));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 900px) { .hero__orb { width: 180px; height: 180px; top: -16px; right: -40px; opacity: 0.85; } }
@media (prefers-reduced-motion: reduce) { .hero__orb img { animation: none; } }
.hero__in { position: relative; z-index: 2; max-width: 820px; }
.hero h1 {
  font-family: var(--nx-font-display); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(38px, 6.4vw, 70px); line-height: 1.02; margin: 22px 0 0;
}
.hero p.lead { font-size: clamp(17px, 2vw, 20px); color: var(--nx-text-2); margin-top: 22px; max-width: 660px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__for {
  margin-top: 40px; display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px; border: 1px solid var(--nx-border); border-radius: var(--nx-radius-pill);
  background: rgba(20,20,23,0.6);
}
.hero__for span { font-size: 13px; color: var(--nx-text-2); }
.hero__for b { font-family: var(--nx-font-display); font-weight: 600; color: var(--nx-white); }

/* Partner (Tutiplast) logo chip on light background for legibility */
.partner-chip {
  display: inline-flex; align-items: center; background: #ffffff;
  border-radius: 10px; padding: 8px 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.partner-chip img { height: 30px; width: auto; display: block; }
.foot__for .partner-chip img { height: 34px; }
@media (max-width: 620px) { .partner-chip img { height: 26px; } }

/* ---------------- Stats ---------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 64px; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  border: 1px solid var(--nx-border); border-radius: var(--nx-radius-lg);
  background: var(--nx-surface); padding: 22px;
}
.stat__v { font-family: var(--nx-font-display); font-weight: 600; font-size: 36px; line-height: 1; }
.stat__l { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--nx-mute); margin-top: 8px; }

/* ---------------- Value cards ---------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
.card {
  background: var(--nx-surface); border: 1px solid var(--nx-border); border-radius: var(--nx-radius-lg);
  padding: 26px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: rgba(232,184,75,0.4); transform: translateY(-3px); box-shadow: var(--nx-glow-sm); }
.card__ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(232,184,75,0.1); border: 1px solid rgba(232,184,75,0.25); color: var(--nx-gold);
  font-size: 20px; margin-bottom: 16px;
}
.card h3 { font-family: var(--nx-font-display); font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--nx-text-2); font-size: 14.5px; }

/* ---------------- Trilha ---------------- */
.trilha { padding-top: 30px; }
.trilha__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trilha__num {
  font-family: var(--nx-font-display); font-weight: 600; font-size: 15px; color: var(--nx-gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.trilha__num::before { content: ""; width: 28px; height: 1px; background: var(--nx-gold); display: inline-block; }

/* ---------------- Modules (accordion) ---------------- */
.modules { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
/* Hint above each modules group */
.modules::before {
  content: "Clique em cada módulo para abrir o conteúdo";
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: var(--nx-font-mono); font-size: 12px; letter-spacing: 0.03em;
  color: var(--nx-gold); background: rgba(232,184,75,0.08);
  border: 1px solid rgba(232,184,75,0.25); border-radius: var(--nx-radius-pill);
  padding: 7px 14px; margin-bottom: 4px;
}
.mod {
  border: 1px solid var(--nx-border); border-radius: var(--nx-radius-lg);
  background: var(--nx-surface); overflow: hidden;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.mod:hover { border-color: rgba(232,184,75,0.45); transform: translateY(-2px); box-shadow: var(--nx-glow-sm); }
.mod.open { border-color: rgba(232,184,75,0.4); box-shadow: var(--nx-glow-sm); transform: none; }
.mod__btn {
  width: 100%; display: flex; align-items: center; gap: 18px; text-align: left;
  background: none; border: none; color: inherit; cursor: pointer; padding: 22px 26px;
  font-family: inherit; transition: background 0.18s;
}
.mod__btn:hover { background: rgba(232,184,75,0.04); }
.mod__idx { font-family: var(--nx-font-mono); font-size: 12px; color: var(--nx-gold); flex: none; width: 38px; }
.mod__t { flex: 1; min-width: 0; }
.mod__t h3 { font-family: var(--nx-font-display); font-weight: 600; font-size: clamp(17px, 2.4vw, 21px); }
.mod__t p { color: var(--nx-mute); font-size: 13px; margin-top: 3px; }

/* Toggle: hint label + animated +/- circle */
.mod__toggle { flex: none; display: inline-flex; align-items: center; gap: 12px; }
.mod__hint::after { content: "Ver conteúdo"; }
.mod.open .mod__hint::after { content: "Fechar"; }
.mod__hint {
  font-family: var(--nx-font-sans); font-size: 13px; font-weight: 600; color: var(--nx-text-2);
  transition: color 0.18s;
}
.mod__btn:hover .mod__hint, .mod.open .mod__hint { color: var(--nx-gold); }
.mod__pm {
  position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--nx-border-2); background: var(--nx-surface-2);
  transition: border-color 0.18s, background 0.18s;
}
.mod__btn:hover .mod__pm, .mod.open .mod__pm { border-color: var(--nx-gold); background: rgba(232,184,75,0.12); }
.mod__pm::before, .mod__pm::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--nx-gold);
  transform: translate(-50%, -50%); transition: transform 0.25s ease, opacity 0.2s;
}
.mod__pm::before { width: 12px; height: 2px; border-radius: 2px; }                 /* horizontal */
.mod__pm::after { width: 2px; height: 12px; border-radius: 2px; }                  /* vertical */
.mod.open .mod__pm::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; } /* + becomes - */
@media (max-width: 560px) { .mod__hint { display: none; } }
.mod__body {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.mod__inner { padding: 0 26px 26px 82px; }
@media (max-width: 620px) { .mod__inner { padding: 0 22px 24px 22px; } .mod__btn { padding: 20px 22px; } }
.mod__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mod__list li { position: relative; padding-left: 26px; color: var(--nx-text-2); font-size: 15px; }
.mod__list li::before {
  content: ""; position: absolute; left: 4px; top: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--nx-gold-grad);
}
.mod__list li b { color: var(--nx-white); font-weight: 600; }
.sublist { list-style: none; margin: 10px 0 2px; padding-left: 4px; display: flex; flex-direction: column; gap: 7px; }
.sublist li { padding-left: 20px; font-size: 14px; }
.sublist li::before { background: var(--nx-border-2); width: 5px; height: 5px; top: 8px; }
.pratica {
  margin-top: 18px; display: flex; gap: 12px; align-items: flex-start;
  background: rgba(72,194,180,0.07); border: 1px solid rgba(72,194,180,0.25);
  border-radius: var(--nx-radius-md); padding: 14px 16px;
}
.pratica .lbl {
  font-family: var(--nx-font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--nx-teal); border: 1px solid rgba(72,194,180,0.4); border-radius: 6px; padding: 4px 8px; flex: none; margin-top: 1px;
}
.pratica p { color: var(--nx-white); font-size: 14.5px; }

/* ---------------- Methodology ---------------- */
.method { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
@media (max-width: 900px) { .method { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .method { grid-template-columns: 1fr; } }
.method__item { border: 1px solid var(--nx-border); border-radius: var(--nx-radius-lg); padding: 24px; background: var(--nx-surface); }
.method__n { font-family: var(--nx-font-mono); font-size: 12px; color: var(--nx-gold); }
.method__item h4 { font-family: var(--nx-font-display); font-weight: 600; font-size: 17px; margin: 12px 0 8px; }
.method__item p { color: var(--nx-text-2); font-size: 14px; }

/* ---------------- Cases ---------------- */
.cases-grid {
  margin-top: 44px; display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
}
.case-card {
  position: relative; border: 1px solid var(--nx-border); border-radius: var(--nx-radius-lg);
  overflow: hidden; cursor: pointer; background: var(--nx-surface-2); padding: 0;
  aspect-ratio: 4 / 3; display: block; text-align: left; color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.case-card:hover { border-color: rgba(232,184,75,0.5); transform: translateY(-3px); box-shadow: var(--nx-glow-sm); }
.case-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease; filter: saturate(1.02);
}
.case-card:hover .case-card__img { transform: scale(1.06); }
.case-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,8,9,0.55) 30%, rgba(8,8,9,0.08) 60%, transparent 80%);
}
.case-card__tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: rgba(10,10,11,0.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.case-card__info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 30px 15px 14px;
  background: linear-gradient(to top, rgba(8,8,9,0.9) 0%, rgba(8,8,9,0.78) 55%, rgba(8,8,9,0) 100%);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(to top, #000 84%, transparent 100%);
  mask-image: linear-gradient(to top, #000 84%, transparent 100%);
}
.case-card__info h3 {
  font-family: var(--nx-font-display); font-weight: 600; font-size: 15px; line-height: 1.25;
  color: #fff; margin: 0; text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.case-card__count {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
  font-size: 12px; color: var(--nx-gold); font-family: var(--nx-font-mono);
}
.case-card__count::before { content: "▦"; font-size: 11px; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(6,6,7,0.94); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 28px;
}
.lb.open { display: flex; }
.lb__stage { margin: 0; max-width: min(1100px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb__stage img {
  max-width: 100%; max-height: 74vh; object-fit: contain;
  border: 1px solid var(--nx-border-2); border-radius: var(--nx-radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lb__cap { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; color: var(--nx-white); font-weight: 600; font-size: 15px; }
.lb__count { font-family: var(--nx-font-mono); font-size: 13px; color: var(--nx-text-2); font-weight: 400; }
.lb__close {
  position: absolute; top: 20px; right: 24px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  background: var(--nx-surface-3); border: 1px solid var(--nx-border-2); color: var(--nx-white); font-size: 16px;
  transition: background 0.15s, border-color 0.15s;
}
.lb__close:hover { border-color: var(--nx-gold); color: var(--nx-gold); }
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 54px; height: 54px; border-radius: 50%; cursor: pointer;
  background: rgba(20,20,23,0.7); border: 1px solid var(--nx-border-2); color: var(--nx-white);
  font-size: 28px; line-height: 1; display: grid; place-items: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.lb__nav:hover { border-color: var(--nx-gold); color: var(--nx-gold); }
.lb__prev { left: 24px; }
.lb__next { right: 24px; }
.lb__nav[hidden] { display: none; }
@media (max-width: 620px) {
  .lb { padding: 14px; }
  .lb__nav { width: 44px; height: 44px; font-size: 22px; }
  .lb__prev { left: 8px; } .lb__next { right: 8px; }
  .lb__close { top: 12px; right: 12px; }
}

/* ---------------- Investimento ---------------- */
.price {
  margin-top: 44px; display: grid; grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid rgba(232, 184, 75, 0.35); border-radius: var(--nx-radius-xl);
  overflow: hidden; box-shadow: var(--nx-glow-sm);
}
@media (max-width: 760px) { .price { grid-template-columns: 1fr; } }
.price__main {
  padding: 50px 44px; display: flex; flex-direction: column; justify-content: center; gap: 8px;
  background: radial-gradient(520px circle at 25% 15%, rgba(232, 184, 75, 0.18), transparent 60%), var(--nx-surface-2);
  border-right: 1px solid var(--nx-border);
}
@media (max-width: 760px) { .price__main { border-right: none; border-bottom: 1px solid var(--nx-border); } }
.price__row { display: flex; align-items: flex-start; gap: 8px; }
.price__cur { font-family: var(--nx-font-display); font-weight: 600; font-size: 28px; color: var(--nx-gold); margin-top: 12px; }
.price__val {
  font-family: var(--nx-font-display); font-weight: 600; font-size: clamp(58px, 9vw, 88px); line-height: 1;
  background: var(--nx-gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.price__per { font-size: 15px; color: var(--nx-text-2); letter-spacing: 0.02em; }
.price__feat {
  list-style: none; padding: 44px; display: flex; flex-direction: column; gap: 18px; background: var(--nx-surface);
}
.price__feat li { position: relative; padding-left: 32px; font-size: 16.5px; color: var(--nx-text-2); }
.price__feat li b { color: var(--nx-white); font-weight: 600; }
.price__feat li::before {
  content: ""; position: absolute; left: 2px; top: 7px; width: 14px; height: 8px;
  border-left: 2px solid var(--nx-gold); border-bottom: 2px solid var(--nx-gold);
  transform: rotate(-45deg);
}

/* ---------------- CTA ---------------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--nx-radius-xl);
  border: 1px solid rgba(232,184,75,0.3); background:
    radial-gradient(600px circle at 80% 20%, rgba(232,184,75,0.16), transparent 60%), var(--nx-surface);
  padding: 60px 48px; text-align: center;
}
@media (max-width: 620px) { .cta-band { padding: 44px 24px; } }
.cta-band h2 { font-family: var(--nx-font-display); font-weight: 600; font-size: clamp(26px, 4vw, 40px); line-height: 1.1; }
.cta-band p { color: var(--nx-text-2); font-size: 17px; margin: 16px auto 30px; max-width: 560px; }
.cta-band .hero__cta { justify-content: center; }
.cta-band__logo {
  width: 84px; height: 84px; object-fit: contain; margin: 10px auto 0;
  filter: drop-shadow(0 0 28px rgba(232, 184, 75, 0.5));
}

/* ---------------- Footer ---------------- */
footer { border-top: 1px solid var(--nx-border); padding: 44px 0; margin-top: 30px; }
.foot { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot small { color: var(--nx-mute); font-size: 13px; }
.foot small a { color: var(--nx-text-2); transition: color 0.15s; }
.foot small a:hover { color: var(--nx-gold); }
.foot .brand__name { font-size: 14px; }
.foot__col { display: flex; flex-direction: column; gap: 12px; }
.foot__col--right { align-items: flex-end; text-align: right; }
.foot__for { display: inline-flex; align-items: center; gap: 10px; }
.foot__for span { font-size: 13px; color: var(--nx-text-2); }
@media (max-width: 620px) { .foot__col--right { align-items: flex-start; text-align: left; } }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
