.elementor-190 .elementor-element.elementor-element-2e64648{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-190 .elementor-element.elementor-element-465e76f{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-465e76f */:root {
  /* nexonalpha brand-ish colors */
  --green: #1fb56b;
  --green-soft: #e3f8ee;
  --blue: #009fe8;
  --blue-soft: #e0f3ff;
  --orange: #f7a826;

  --bg-page: #f4f6fb;
  --bg-surface: #ffffff;
  --bg-soft: #f1f5f9;

  --border-subtle: #e2e8f0;
  --border-strong: #cbd5e1;

  --text-main: #0f172a;
  --text-soft: #64748b;
  --text-softer: #94a3b8;

  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-subtle: 0 6px 24px rgba(15, 23, 42, 0.06);

  --max-width: 1120px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

.page {
  min-height: 100vh;
}

.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 16px 56px;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 24px;
  margin-bottom: 32px;
}

.hero-main {
  padding: 18px 10px 10px 4px;
}

/* brand row */

.hero-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: radial-gradient(circle at 0% 0%, #41c77f, #0d9c55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(15, 118, 110, 0.45);
}

.hero-logo {
  max-width: 32px;
  max-height: 32px;
  display: block;
}

.hero-tagline-main {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-tagline-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 11px;
  color: var(--text-softer);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-tagline-sub::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.hero-title {
  margin: 16px 0 8px;
  font-size: clamp(26px, 3.1vw, 32px);
  line-height: 1.2;
  font-weight: 700;
}

.hero-title span {
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--text-soft);
  max-width: 560px;
}

/* hero alert */

.hero-alert {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #92400e;
  background: linear-gradient(90deg, #fff7e5, #fff3d2);
  border-radius: 12px;
  border: 1px solid #fed7aa;
  padding: 8px 10px;
}

.hero-alert-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* buttons */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--green), var(--blue));
  color: #ffffff;
  box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background-color: #ffffff;
  color: var(--text-soft);
  border-color: var(--green);
}

.btn-outline:hover {
  color: var(--green);
  box-shadow: var(--shadow-subtle);
}

.btn-outline-alt {
  background-color: #ffffff;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-alt:hover {
  box-shadow: var(--shadow-subtle);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-soft);
  border-color: var(--border-subtle);
}

.btn-ghost:hover {
  color: var(--blue);
  border-color: var(--blue);
}

/* HERO PANEL */

.hero-panel {
  background-color: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 14px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 0 0, rgba(31, 181, 107, 0.15), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 159, 232, 0.13), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.panel-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background-color: var(--green-soft);
  color: #047857;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 4px;
}

.panel-title {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 600;
}

.panel-subtitle {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-soft);
}

/* timeline */

.timeline {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}

.timeline-step {
  position: relative;
  padding: 8px 10px 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background-color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.timeline-label {
  font-size: 12px;
  font-weight: 600;
}

.timeline-desc {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 2px;
}

.panel-footer {
  margin: 6px 0 0;
  padding-top: 8px;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  font-size: 12px;
  color: var(--text-soft);
}

/* SECTIONS */

.section {
  margin-top: 24px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.section-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
}

.section-subtitle {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

.section-footnote {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-soft);
}

/* CARDS */

.card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow-subtle);
}

.card-center {
  text-align: center;
}

.card-lead {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 500;
}

.card-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--text-soft);
}

.card-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
}

.card-accent {
  background-color: var(--green-soft);
  border-color: #8de0b6;
}

.card-muted {
  background-color: #f7fafc;
}

.card-border-dashed {
  border-style: dashed;
}

/* LISTS */

.list {
  margin: 6px 0 0;
  padding-left: 1.1rem;
  font-size: 13px;
  color: var(--text-soft);
}

.list li {
  margin-bottom: 4px;
}

/* GRID */

.section-grid .grid {
  margin-top: 4px;
}

.grid {
  display: grid;
  gap: 12px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* CHIPS / LABELS */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.chip {
  padding: 5px 10px;
  border-radius: 999px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-soft);
}

.label-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background-color: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  margin-bottom: 4px;
}

.label-soft {
  background-color: var(--bg-soft);
  color: var(--text-soft);
}

/* BROKERS */

.broker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.broker-pill {
  padding: 4px 8px;
  border-radius: 999px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-main);
}

.markets-line {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-soft);
}

/* CTA */

.section-cta {
  margin-top: 28px;
}

.cta-card {
  background: linear-gradient(120deg, var(--green), var(--blue));
  border-radius: var(--radius-xl);
  padding: 16px 18px 14px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.cta-text h2 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
}

.cta-text p {
  margin: 0;
  font-size: 13px;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* FAQ */

.faq-grid {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.faq-item {
  background-color: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 10px 12px;
}

.faq-q {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
}

.faq-a {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    padding: 14px 14px 12px;
  }
}

@media (max-width: 640px) {
  .shell {
    padding-inline: 14px;
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}/* End custom CSS */