:root {
  --fx-bg: #10172a;
  --fx-surface: #111826;
  --fx-card: rgba(255, 255, 255, 0.06);
  --fx-glass: rgba(255, 255, 255, 0.08);
  --fx-stroke: rgba(255, 255, 255, 0.12);
  --fx-grad1: #d6f77a;
  --fx-grad2: #25dca7;
  --fx-accent: #2377d1;
}

html,
body {
  background: var(--fx-bg);
  color: #dfe6f1;
  scroll-behavior: smooth;
  font-family: poppins, sans-serif;
   overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* Animated background gradient */
.gradient-sky {
  inset: -20vmax;
  z-index: -1;
  background: radial-gradient(60vmax 60vmax at 15% 10%,
      rgba(203, 222, 224, 0.25),
      transparent 60%),
    radial-gradient(70vmax 70vmax at 80% 0%,
      rgba(123, 97, 255, 0.2),
      transparent 60%),
    radial-gradient(80vmax 80vmax at 40% 95%,
      rgba(94, 252, 141, 0.14),
      transparent 60%),
    linear-gradient(180deg, #0b0f16 0%, #0a0e15 100%);
  filter: saturate(110%);
  animation: drift 30s linear infinite alternate;
  pointer-events: none;
}

@keyframes drift {
  from {
    transform: translateY(-2%) scale(1.02);
  }
  to {
    transform: translateY(2%) scale(1.06);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 8rem 0 5.5rem;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.04));
  border: 1px solid var(--fx-stroke);
  font-size: 0.9rem;
}

.hero h1 {
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(2rem, 1rem + 3.4vw, 4.2rem);
}

.glow {
  background: linear-gradient(90deg,
      var(--fx-grad1),
      var(--fx-grad2),
      var(--fx-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(0, 229, 255, 0.25);
}

.hero-cta .btn {
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
}

.btn-grad {
  background-image: linear-gradient(90deg, var(--fx-grad1), var(--fx-grad2), var(--fx-accent));
  color: black;
  font-weight: 700;
  border: 0;
  box-shadow: 0 10px 24px rgba(0, 229, 255, 0.25);
}

.btn-grad:hover {
  filter: saturate(120%) brightness(1.05);
  transform: translateY(-1px);
  background: var(--fx-accent);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid var(--fx-stroke);
}

/* Ticker strip */
.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--fx-stroke);
  border-bottom: 1px solid var(--fx-stroke);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
  display: flex;
  gap: 2.2rem;
  padding: 0.6rem 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

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

.badge-up {
  color: #19e58a;
}

.badge-down {
  color: #ff6b6b;
}

/* Cards 3D tilt */
.tilt {
  will-change: transform;
  transform-style: preserve-3d;
  transform: perspective(800px) rotateX(0) rotateY(0);
}

.tilt .tilt__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(350px 250px at var(--mx, 50%) var(--my, 50%),
      rgba(255, 255, 255, 0.2),
      transparent 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.product-card {
  position: relative;
  height: 100%;
  border-radius: 16px;
  border: 1px solid var(--fx-stroke);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.35);
}

/* Sections */
section {
  padding-bottom: 6rem;
}

.section-title {
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-sub {
  opacity: 0.8;
}

/* Accounts */
.plan {
  border: 1px solid var(--fx-stroke);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));
}

.plan .price {
  font-size: clamp(1.6rem, 1rem + 1.8vw, 2.3rem);
  font-weight: 800;
}

.plan .list-group-item {
  background: transparent;
  color: #cfe0ff;
  border-color: var(--fx-stroke);
}

.popular {
  outline: 2px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 0 6px rgba(0, 229, 255, 0.06);
}

/* Platform badges */
.platform-badges .btn {
  border: 1px solid var(--fx-stroke);
  background: rgba(255, 255, 255, 0.04);
}

.platform-badges .btn:hover {
  border-color: rgba(123, 97, 255, 0.45);
}

/* Contact */
.form-control,
.form-select {
  border: 1px solid var(--fx-stroke);
  background: rgba(255, 255, 255, 0.04);
  color: #dfe6f1;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--fx-grad1);
  box-shadow: 0 0 0 0.25rem rgba(0, 229, 255, 0.15);
}

/* Footer */
.footer-mega {
  background: linear-gradient(180deg, #10172a, #0a0e15);
  border-top: 1px solid var(--fx-stroke);
  color: #cfe0ff;
  font-size: 0.95rem;
}

.footer-mega .footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.05rem;
}

.footer-mega .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-mega .footer-links li {
  margin-bottom: 0.5rem;
}

.footer-mega .footer-links a {
  text-decoration: none;
  color: #cfe0ff;
  transition: color 0.2s ease;
}

.footer-mega .footer-links a:hover {
  color: var(--fx-grad1);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
}

.footer-mega .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cfe0ff;
  transition: all 0.25s ease;
}

.footer-mega .social:hover {
  color: #fff;
  border-color: var(--fx-grad1);
  background: linear-gradient(90deg, var(--fx-grad1), var(--fx-grad2));
  box-shadow: 0 4px 18px rgba(0, 229, 255, 0.25);
}

.footer-mega .risk-warning {
  line-height: 1.5;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-top: 1rem;
  opacity: 0.85;
}

/* Small helpers */
.divider {
  height: 1px;
  background: var(--fx-stroke);
  margin: 2rem 0;
}

.icon-24 {
  font-size: 1.2rem;
}

.glass {
  background: var(--fx-glass);
  border: 1px solid var(--fx-stroke);
  border-radius: 16px;
}

.fx-chip {
  border: 1px solid var(--fx-stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem 0.6rem;
  font-size: 0.85rem;
}

.shadow-soft {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.accent {
  color: var(--fx-accent);
}

.bg-grid {
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px,
      transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px;
  background-position: center center;
  mask-image: radial-gradient(80% 60% at 50% 40%, #000 60%, transparent 100%);
  border-radius: 18px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .dropdown-mega {
    min-width: 100%;
    left: 0;
    right: 0;
  }
}

/* ——— Accounts (Designer version) ——— */
.accounts-grid {
  --gap: 1.25rem;
  display: flex;
  flex-wrap: wrap;
}

.accounts-grid>[class*="col-"] {
  display: flex;
}

.pricing-card {
  position: relative;
  border-radius: 20px;
  padding: 28px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  border-color: rgba(0, 229, 255, 0.35);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: radial-gradient(600px 160px at var(--mx, 120%) -20%,
      rgba(0, 229, 255, 0.35),
      transparent 40%),
    radial-gradient(400px 160px at -10% 110%,
      rgba(123, 97, 255, 0.3),
      transparent 45%);
  pointer-events: none;
  opacity: 0.4;
}

.kicker {
  display: inline-flex;
  align-items: center;
  width: 100px;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
}

.price-lines {
  line-height: 1.05;
  margin: 0.75rem 0 1rem;
}

.price-lines .big {
  font-weight: 800;
  font-size: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}

.price-lines .grad-num {
  background: linear-gradient(90deg,
      var(--fx-grad1),
      var(--fx-grad2),
      var(--fx-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feat-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.6rem;
  margin-top: 1rem;
}

.feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cfe0ff;
  font-size: 0.925rem;
}

.feat-chip i {
  color: #19e58a;
  font-size: 1rem;
}

.btn-cta {
  margin-top: 1.1rem;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  width: 100%;
  background-image: linear-gradient(90deg,
      var(--fx-grad1),
      var(--fx-grad2),
      var(--fx-accent));
  border: 0;
  color: #0b0f16;
  text-decoration: none;
}

.btn-cta:hover {
  filter: saturate(115%) brightness(1.05);
}

.is-popular {
  outline: 2px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 0 8px rgba(0, 229, 255, 0.06), 0 18px 60px rgba(0, 0, 0, 0.45);
}

.pricing-card {
  will-change: transform;
}

.pricing-card[data-tilt] {
  transform: perspective(800px) rotateX(0) rotateY(0);
}

/* ===================== ABOUT & WHY CHOOSE ===================== */
.about-wrap,
.choose-wrap {
  position: relative;
}

.about-card,
.choose-card {
  border: 1px solid var(--fx-stroke);
  border-radius: 20px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.media-tilt {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--fx-stroke);
  background: #000;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
  transform: perspective(900px) rotateX(0) rotateY(0);
  will-change: transform;
}

.media-tilt img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.media-tilt::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(500px 250px at var(--mx, 60%) var(--my, 40%),
      rgba(255, 255, 255, 0.18),
      transparent 60%);
  mix-blend-mode: overlay;
}

.feature-tile {
  border: 1px solid var(--fx-stroke);
  border-radius: 16px;
  padding: 16px 18px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fx-stroke);
  margin-bottom: 0.6rem;
}

.tick-list i {
  color: #19e58a;
}

.mosaic {
  position: relative;
  height: 260px;
}

.mosaic .shot {
  position: absolute;
  width: 44%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--fx-stroke);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  transform: rotateZ(var(--rot, 0deg)) translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mosaic .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic .shot:hover {
  transform: translateY(-6px) rotateZ(var(--rot, 0deg));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--fx-stroke);
  color: #cfe0ff;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: all 0.55s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.tv-sandbox {
  isolation: isolate;
  contain: paint;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--fx-glass);
}

.tv-sandbox iframe {
  all: unset;
  display: block;
  width: 250px;
  height: 126px;
  border: 0;
  background: transparent !important;
}

/* ---------- Scoped styles ---------- */
.fx-steps {
  --bg: var(--fx-bg, #0b0f16);
  --surface: var(--fx-surface, #111826);
  --stroke: var(--fx-stroke, rgba(255, 255, 255, 0.12));
  --grad1: var(--fx-grad1, #00e5ff);
  --grad2: var(--fx-grad2, #7b61ff);
  --text: #dfe6f1;
  --muted: #a7b4c9;
  background: transparent;
  color: var(--text);
}

.fx-steps .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.fx-steps__head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.fx-steps__kicker {
  display: inline-block;
  font-size: 0.9rem;
  color: #9ddfff;
  letter-spacing: 0.08em;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
}

.fx-steps__title {
  font-weight: 800;
  line-height: 1.08;
  font-size: clamp(1.6rem, 1rem + 2.4vw, 2.4rem);
  margin: 0.6rem 0 0.3rem;
}

.fx-steps__sub {
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto;
}

.fx-steps__grid {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 2.25rem 0 1.25rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.fx-steps__grid::before {
  content: "";
  position: absolute;
  left: clamp(20px, 2vw, 28px);
  right: clamp(20px, 2vw, 28px);
  top: 28px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--grad1), var(--grad2));
  opacity: 0.35;
}

.fx-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fx-step__dot {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-weight: 800;
  border-radius: 999px;
  color: #0b0f16;
  z-index: 1;
  background: linear-gradient(90deg, var(--grad1), var(--grad2));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 6px rgba(0, 229, 255, 0.12);
  transform: translateY(4px);
}

.fx-step__card {
  margin-top: 0.6rem;
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));
  padding: 16px 16px 18px;
  min-height: 156px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.fx-step__card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 0 6px rgba(0, 229, 255, 0.06) inset;
}

.fx-step__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #bfe9ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  margin-bottom: 0.5rem;
}

.fx-step__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.fx-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.2rem 0 0.25rem;
}

.fx-step__text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.fx-steps__cta {
  text-align: center;
  margin-top: 1.2rem;
}

.fx-steps__btn {
  display: inline-block;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  color: #0b0f16;
  text-decoration: none;
  border: 0;
  background-image: linear-gradient(90deg,
      var(--grad1),
      var(--grad2),
      var(--fx-accent));
  box-shadow: 0 10px 24px rgba(0, 229, 255, 0.25);
}

.fx-steps__btn:hover {
  filter: saturate(115%) brightness(1.05);
  transform: translateY(-1px);
}

.fx-steps__note {
  color: var(--muted);
  margin-top: 0.55rem;
  font-size: 0.9rem;
}

.fx-steps__note span {
  color: #ffc68a;
}

@media (max-width: 992px) {
  .fx-steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fx-steps__grid::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .fx-steps__grid {
    grid-template-columns: 1fr;
  }
  .fx-step__card {
    min-height: auto;
  }
}

.fx-step__card {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.fx-step__card.is-in {
  opacity: 1;
  transform: none;
  transition: all 0.55s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.fx-step:nth-child(2) .fx-step__card.is-in {
  transition-delay: 0.06s;
}

.fx-step:nth-child(3) .fx-step__card.is-in {
  transition-delay: 0.12s;
}

.fx-step:nth-child(4) .fx-step__card.is-in {
  transition-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  .fx-step__card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Scoped styles ---------- */
.fx-join {
  --bg: var(--fx-bg, #091816);
  --surface: var(--fx-surface, #111826);
  --stroke: var(--fx-stroke, rgba(255, 255, 255, 0.12));
  --g1: var(--fx-grad1, #00e5ff);
  --g2: var(--fx-grad2, #7b61ff);
  --text: #dfe6f1;
  --muted: #a7b4c9;
  position: relative;
  overflow: clip;
  background: var(--bg);
  color: var(--text);
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.fx-join__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, #10172a, #10172a);
  animation: fx-join-drift 28s linear infinite alternate;
  filter: saturate(110%);
}

@keyframes fx-join-drift {
  from {
    transform: translateY(-1%) scale(1.02);
  }
  to {
    transform: translateY(1%) scale(1.06);
  }
}

.fx-join__container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.fx-join__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.fx-join__kicker {
  display: inline-block;
  font-size: 0.9rem;
  color: #bfe9ff;
  letter-spacing: 0.08em;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  background: rgba(255, 255, 255, 0.06);
}

.fx-join__title {
  margin: 0.65rem 0 0.45rem;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(1.8rem, 1.2rem + 3.2vw, 3rem);
}

.fx-join__accent {
  background: linear-gradient(90deg, var(--g1), var(--g2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(0, 229, 255, 0.18);
}

.fx-join__sub {
  color: var(--muted);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
}

.fx-join__cta {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.fx-join__btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.9rem 1.15rem;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.fx-join__btn--primary {
  color: #0b0f16;
  border: 0;
  background-image: linear-gradient(90deg,
      var(--g1),
      var(--g2),
      var(--fx-accent));
  box-shadow: 0 10px 24px rgba(0, 229, 255, 0.25);
}

.fx-join__btn--ghost {
  color: var(--text);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
}

.fx-join__btn:hover {
  transform: translateY(-1px);
  filter: saturate(115%) brightness(1.04);
}

.fx-join__stats {
  list-style: none;
  margin: clamp(1.8rem, 3vw, 2.6rem) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  max-width: 980px;
}

.fx-stat {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  padding: 14px 16px;
  text-align: center;
  transition: border-color 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease;
}

.fx-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 0 6px rgba(0, 229, 255, 0.06) inset;
}

.fx-stat__num {
  display: block;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(1.4rem, 1rem + 1.8vw, 2rem);
}

.fx-stat__unit {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-left: 0.15rem;
}

.fx-stat__label {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .fx-join__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .fx-join__stats {
    grid-template-columns: 1fr;
  }
  .fx-join__btn {
    width: 100%;
    text-align: center;
  }
}

.fx-section-dots {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}

.fx-circle-dots {
  position: absolute;
  width: clamp(520px, 62vw, 980px);
  height: clamp(520px, 62vw, 980px);
  top: -55%;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
}

.fx-section-dots:nth-of-type(odd) .fx-circle-dots {
  right: -23%;
}

.fx-section-dots:nth-of-type(even) .fx-circle-dots {
  left: -23%;
}

.fx-circle-dots .spin {
  animation: fxSpin 22s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes fxSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-circle-dots .spin {
    animation: none !important;
  }
}

/* ===== About Page (new additions only) ===== */
.about-hero {
  padding: 8rem 0rem 0rem 0rem;
}

.mv-section,
.values-section {
  padding: 5.5rem 0;
}

.mv-card {
  border: 1px solid var(--fx-stroke);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  padding: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .22);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, .35);
}

.mv-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--fx-grad1), var(--fx-grad2));
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 8px 22px rgba(0, 229, 255, .25);
}

.kpi {
  border: 1px solid var(--fx-stroke);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .04);
}

.kpi .num {
  font-weight: 800;
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.2rem);
  background: linear-gradient(90deg, var(--fx-grad1), var(--fx-grad2), var(--fx-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bullet-soft {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.bullet-soft li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin: .45rem 0;
}

.bullet-soft i {
  color: #19e58a;
  margin-top: .2rem;
}

.about-photo {
  /* min-height: 340px; */
  border-radius: 22px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.muted-label {
  font-size: .85rem;
  opacity: .75;
}














/* CONTACT US PAGE */
 /* ----- MAIN CONTACT LAYOUT (large devices remain exactly as you want) ----- */
    .contact-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 150px;         /* your original big-screen value */
      min-height: 100vh;
      margin-top: 40px;
      gap: 60px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    /* LEFT INFO (large) */
    .contact-info {
      max-width: 70%;
    }

    .contact-info h1 {
      font-size: 4rem;
      margin-bottom: 24px;
      font-weight: 700;
    }

    .contact-info h1 span {
      color: #00ff6a;
    }

    .contact-info p {
      font-size: 20px;
      margin: 10px 0;
      line-height: 1.6;
      color: #ccc;
      border-left: 4px solid #22dd70;
      padding-left: 22px;
    }

    /* RIGHT FORM (large) – exactly your design with corners */
    .contact-form {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 50px;
      border-radius: 2px;
      width: 550px;
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    /* corner elements (pseudo + span) exactly as you had */
    .contact-form::before,
    .contact-form::after,
    .contact-form .corner {
      content: "";
      position: absolute;
      width: 150px;
      height: 160px;
      border: 3px solid #04b14c;
      z-index: 0;
    }

    .contact-form::before {
      top: -11px;
      left: -11px;
      border-right: none;
      border-bottom: none;
    }

    .contact-form::after {
      bottom: -11px;
      right: -11px;
      border-left: none;
      border-top: none;
    }

    .contact-form .top-right {
      top: -11px;
      right: -11px;
      border-left: none;
      border-bottom: none;
    }

    .contact-form .bottom-left {
      bottom: -11px;
      left: -11px;
      border-right: none;
      border-top: none;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      background: transparent;
      border: none;
      border-bottom: 2px solid #333;
      color: #fff;
      font-size: 14px;
      outline: none;
      transition: border 0.2s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-bottom: 2px solid #05c053;
    }

    .contact-form button {
      width: 100%;
      padding: 14px;
      border: none;
      background: #22dd70;
      color: #111;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .contact-form button:hover {
      background: #05a448;
    }

    /* =====================================================
       SMALL DEVICES (≤900px) – COMPLETE REDESIGN 
       attractive, clean, mobile-first, keeps your identity
       ===================================================== */
    @media(max-width: 900px) {
      .contact-container {
        flex-direction: column;
        padding: 100px 20px;           /* fresh padding */
        gap: 30px;
        margin-top: 20px;
        min-height: auto;
      }

      /* left info becomes full width with fresh style */
      .contact-info {
        max-width: 90%;
        width: 100%;
        margin-bottom: 0;
        background: rgba(20, 30, 25, 0.5);
        backdrop-filter: blur(8px);
        border-radius: 36px 36px 36px 36px;
        padding: 32px 24px;
        border: 1px solid rgba(72, 255, 160, 0.25);
        box-shadow: 0 20px 35px -8px rgba(0,40,20,0.6);
      }

      .contact-info h1 {
        font-size: 2.8rem;           /* smaller but still bold */
        margin-bottom: 20px;
        text-align: left;
      }

      .contact-info h1 span {
        color: #3eff9e;
        text-shadow: 0 0 8px #22dd7080;
      }

      /* each info line transformed into “cardlets” */
      .contact-info p {
        font-size: 18px;
        margin: 16px 0;
        padding: 16px 20px;
        border-left: none;
        background: rgba(0, 30, 15, 0.5);
        border-radius: 28px;
        color: #e6ffe6;
        border: 1px solid rgba(64, 255, 150, 0.3);
        backdrop-filter: blur(4px);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
      }

      /* add subtle icon feel (optional) – we keep text only, but you can add icons later */
      .contact-info p strong {
        color: #9affb0;
        font-weight: 600;
        display: inline-block;
        min-width: 140px;
      }

      /* make the physical address look good */
      .contact-info p br + strong {
        margin-top: 8px;
      }

      /* ----- FORM REDESIGN (mobile) ----- */
      .contact-form {
        width: 90%;
        padding: 40px 28px;
        background: rgba(15, 25, 22, 0.85);
        backdrop-filter: blur(16px);
        border: 1px solid #2b8c4c;
        border-radius: 48px 48px 48px 48px;
        box-shadow: 0 25px 40px -12px #00000080, 0 0 0 1px #3aff9e40 inset;
      }

      /* remove the large corner pseudo-elements on mobile – they don't scale well */
      .contact-form::before,
      .contact-form::after,
      .contact-form .corner {
        display: none;
      }

      /* mobile form title */
      .contact-form h2 {
        font-size: 2.4rem;
        font-weight: 600;
        margin-bottom: 30px;
        color: #ffffff;
        text-align: center;
        letter-spacing: -0.5px;
        background: linear-gradient(145deg, #d0ffd0, #aaffc0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      /* form group & inputs with new roundness */
      .form-group {
        margin-bottom: 28px;
      }

      .form-group input,
      .form-group textarea {
        background: rgba(255, 255, 255, 0.03);
        border: 1.5px solid #2f5540;
        border-radius: 44px !important;
        padding: 16px 24px !important;
        font-size: 17px;
        color: #f0fff0;
        border-bottom: 2px solid #3a9b5f;  /* keep green accent */
        transition: all 0.2s;
      }

      .form-group textarea {
        border-radius: 32px !important;
        padding: 18px 24px !important;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        border-color: #5effa2;
        background: rgba(40, 60, 50, 0.6);
        box-shadow: 0 0 0 4px rgba(94, 255, 162, 0.2);
      }

      /* mobile button — pill shape, gradient */
      .contact-form button {
        background: linear-gradient(145deg, #2ecc71, #1f8f4c);
        border-radius: 60px;
        padding: 18px 24px;
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #0a2413;
        border: 1px solid #9effb4;
        box-shadow: 0 12px 28px -8px #00b34b;
        transition: 0.2s;
        margin-top: 10px;
      }

      .contact-form button:hover {
        background: linear-gradient(145deg, #3de682, #27b15c);
        transform: scale(1.02);
        box-shadow: 0 18px 30px -6px #13d860;
      }

      /* optional small extra: icons before strong lines? we keep minimal, but add subtle glow */
      .contact-info p::before {
        content: "▹";
        color: #33ff99;
        margin-right: 12px;
        font-size: 22px;
        vertical-align: middle;
      }

      /* make physical address multi-line consistent */
      .contact-info p:nth-child(3) br {
        display: none; /* we control via padding */
      }
      .contact-info p:nth-child(3) strong {
        display: inline-block;
        margin-bottom: 6px;
      }

      /* fine tune address */
      .contact-info p:has(br) {
        padding-bottom: 12px;
      }
    }

    /* extra small tweaks (≤480px) */
    @media(max-width: 480px) {
      .contact-info h1 {
        font-size: 2.4rem;
      }
      .contact-info p {
        font-size: 16px;
        padding: 14px 18px;
      }
      .contact-info p strong {
        min-width: 120px;
      }
      .contact-form {
        padding: 32px 18px;
      }
      .contact-form h2 {
        font-size: 2rem;
      }
      .contact-form button {
        font-size: 1.2rem;
        padding: 16px;
      }
      .form-group input,
      .form-group textarea {
        padding: 14px 20px !important;
        font-size: 16px;
      }
    }














/* FAQS */
.faq-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px 24px;
  background-color: rgba(17, 24, 38, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.faq-title {
  font-size: 2.2rem;
  color: #0093e9;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: .02em;
}

.faq-item {
  margin-bottom: 18px;
  margin-left: 5px;
  margin-right: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.23);
}

.faq-question {
  display: block;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 500;
  color: white;
  border: none;
  font-size: 1.08rem;
  position: relative;
  transition: background 0.2s, color 0.2s;
}

.faq-question.active {
  color: #fff;
}

.faq-question::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  border: solid #64748b;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s, border-color 0.3s;
}

.faq-question.active::after {
  border-color: #d4d3d3;
  transform: translateY(-50%) rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: rgb(243, 243, 244);
  font-size: 1.06rem;
  background: #334155;
  transition: max-height 0.4s ease, opacity 0.32s, padding 0.32s;
  opacity: 0;
  padding: 0 24px;
}

.faq-answer.show {
  max-height: 700px;
  opacity: 1;
  padding: 16px 24px 18px 24px;
  box-shadow: 0 2px 8px rgba(0, 147, 233, 0.09);
}

@media (max-width: 600px) {
  .faq-container {
    padding: 10px 2px;
    border-radius: 0;
  }
  .faq-question,
  .faq-answer {
    padding-left: 10px;
    padding-right: 10px;
  }
  .faq-question::after {
    right: 8px;
    padding: 5px;
  }
}