/* ==========================================================================
   Magic Life — Global Design Tokens & Reset
   ========================================================================== */

:root {
  --bg-cosmic: radial-gradient(circle at 50% 50%, #f4f7fe 0%, #eef2fa 50%, #e2eaf8 100%);
  --color-primary: #00349b;
  --color-secondary: #008833;
  --color-accent: #ff9900;
  --color-pink: #d81b60;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-hover: rgba(255, 255, 255, 0.98);
  --glass-border: rgba(255, 255, 255, 0.6);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* ---- Brand core ---- */
  --ml-navy: #013686;
  --ml-navy-deep: #0a2247;
  --ml-blue: #1c5fc4;
  --ml-green: #1f9d55;
  --ml-green-deep: #147a41;
  --ml-gold: #d7a018;
  --ml-gold-soft: #f0c34d;

  /* ---- Logo confetti dots (accent-only, used sparingly) ---- */
  --dot-pink: #d6207e;
  --dot-orange: #ef6a1c;
  --dot-yellow: #f4b81a;
  --dot-skyblue: #2a9bd9;
  --dot-brown: #7a4a2b;
  --dot-green: #3aa444;

  /* ---- Surface / background ---- */
  --bg-base: #f5f8fc;
  --bg-alt: #eef3fa;
  --bg-card: #ffffff;
  --bg-card-hover: #fbfdff;
  --bg-navy-panel: #00327e;

  /* ---- Text ---- */
  --text-primary: #16233f;
  --text-secondary: #4a5872;
  --text-main: #2b2d42;
  --text-muted: #7c8aa3;
  --text-on-dark: #eef3fc;
  --text-on-dark-muted: #b7c6e6;

  /* ---- Borders / shadows ---- */
  --border-soft: rgba(18, 53, 107, 0.1);
  --border-soft-2: rgba(18, 53, 107, 0.16);
  --shadow-sm: 0 2px 10px rgba(18, 53, 107, 0.06);
  --shadow-md: 0 10px 30px rgba(18, 53, 107, 0.1);
  --shadow-lg: 0 20px 50px rgba(18, 53, 107, 0.16);
  --shadow-gold: 0 10px 26px rgba(215, 160, 24, 0.28);

  /* ---- Gradients ---- */
  --grad-brand: linear-gradient(120deg, var(--ml-navy) 0%, var(--ml-blue) 55%, var(--ml-green) 120%);
  --grad-gold: linear-gradient(120deg, #f0c34d 0%, #d7a018 100%);
  --grad-panel: linear-gradient(160deg, #013686 0%, #002a68 60%, #0148e2 130%);

  /* ---- Radii ---- */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* ---- Type ---- */
  --font-display: "Baloo 2", "Poppins", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  /* ---- Layout ---- */
  --container-w: 1240px;
  --nav-h: 76px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

#root {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, svg {
  display: block;
  /* max-width: 100%; */
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
}

::selection {
  background: var(--ml-gold-soft);
  color: var(--ml-navy-deep);
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ml-gold);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Page-level transition helpers, kept minimal since each page owns its
   own layout via dedicated component/page CSS files. */

main {
  min-height: 60vh;
}


/* ==== components/CosmicBackground/CosmicBackground.css ==== */
.premium-cosmic-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  display: block;
  background: #edf2f9;
}
/* ==== components/Navbar/Navbar.css ==== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(245, 248, 252, 0.7);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar__logo img{
  width: auto;
  height: 50px;
}

.navbar__logo-mark {
  position: relative;
  width: 38px;
  height: 34px;
  flex-shrink: 0;
}

.navbar__logo-mark i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}
.navbar__logo-mark i:nth-child(1) { top: 0; left: 2px; width: 12px; height: 12px; }
.navbar__logo-mark i:nth-child(2) { top: 4px; left: 16px; }
.navbar__logo-mark i:nth-child(3) { top: 2px; left: 27px; width: 8px; height: 8px; }
.navbar__logo-mark i:nth-child(4) { top: 0; left: 34px; width: 7px; height: 7px; }
.navbar__logo-mark i:nth-child(5) { top: 16px; left: 22px; width: 8px; height: 8px; }
.navbar__logo-mark i:nth-child(6) { top: 20px; left: 6px; width: 8px; height: 8px; }

.navbar__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ml-navy);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-text em {
  font-style: normal;
  color: var(--ml-green);
}

.navbar__logo-text small {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ml-gold);
  margin-top: 2px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__link {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.navbar__link:hover {
  background: var(--bg-alt);
  color: var(--ml-navy);
}

.navbar__link.is-active {
  background: var(--ml-navy);
  color: #fff;
}

.navbar__cta {
  margin-left: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--grad-gold);
  color: var(--ml-navy-deep);
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(215, 160, 24, 0.38);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ml-navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar__toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-soft);
    padding: 14px 20px 24px;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    box-shadow: var(--shadow-md);
  }

  .navbar__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar__link,
  .navbar__cta {
    text-align: center;
    width: 100%;
    padding: 13px 16px;
  }

  .navbar__cta {
    margin-left: 0;
    margin-top: 6px;
  }
}

@media (max-width: 420px) {
  .navbar__logo-text {
    font-size: 1.24rem;
  }
}

/* ==== components/Footer/Footer.css ==== */
.footer {
  margin-top: 80px;
  background: var(--grad-panel);
  color: var(--text-on-dark-muted);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 15% 0%, rgba(215, 160, 24, 0.14), transparent 60%);
  pointer-events: none;
}

.footer__top {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
  gap: 40px;
  padding: 64px 28px 44px;
}

.footer__logo {
  width: 160px;
  margin-bottom: 12px;
}
.footer__logo img {
  width: auto;
  height: 50px;
  display: block;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: #fff;
}

.footer__logo-text em {
  font-style: normal;
  color: var(--ml-gold-soft);
}

.footer__tagline {
  color: var(--ml-gold-soft);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 6px 0 14px;
}

.footer__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 340px;
  color: var(--text-on-dark-muted);
}

.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer__col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-gold);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 0.92rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__col a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  align-items: flex-start;
}

.footer__icon {
  flex-shrink: 0;
}

.footer__badges li {
  font-size: 0.88rem;
  padding-left: 18px;
  position: relative;
}

.footer__badges li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--ml-gold-soft);
}

.footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom-inner {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.84rem;
}

.footer__slogan {
  color: var(--ml-gold-soft);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-dev__link {
  color: var(--ml-green);
  transition: color 0.2s ease;
  font-weight: 700;
}

.footer-dev__link:hover {
  color: var(--color-secondary);
}

@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 22px 36px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==== components/Hero/Hero.css ==== */
.hero {
  position: relative;
  padding: 70px 0 60px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 65%);
  z-index: 1;
}

.hero__copy{
  z-index: 2;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero__eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-alt);
  border: 1px solid var(--border-soft-2);
  color: var(--ml-gold);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.hero__title span {
  color: var(--ml-green);
  display: block;
}

.hero__desc {
  margin: 22px 0 30px;
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__btn {
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero__btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.hero__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero__btn--ghost {
  background: #fff;
  color: var(--ml-navy);
  border: 2px solid var(--border-soft-2);
}

.hero__btn--ghost:hover {
  border-color: var(--ml-navy);
  transform: translateY(-3px);
}

.hero__pillars {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hero__pillars div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__pillars strong {
  font-family: var(--font-display);
  color: var(--ml-blue);
  font-size: 1.05rem;
}

.hero__pillars span {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}

/* ---------- Visual ---------- */
.hero__visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(18, 53, 107, 0.18);
}

.hero__orbit--a {
  width: 340px;
  height: 340px;
  animation: spin 40s linear infinite;
}

.hero__orbit--b {
  width: 440px;
  height: 440px;
  border-color: rgba(31, 157, 85, 0.16);
  animation: spin 60s linear infinite reverse;
}

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

.hero__badge {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--grad-panel);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero__badge-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.hero__badge-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ml-gold-soft);
  margin: 4px 0;
}

.hero__badge-foot {
  font-size: 0.7rem;
  color: var(--text-on-dark-muted);
  padding: 0 20px;
}

.hero__node {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.hero__node img {
  position: absolute;
  object-fit: cover;
  border-radius: 50%;
}

.hero__node--1 { top: 6%; left: 8%; animation-delay: 0s; }
.hero__node--2 { top: 12%; right: 4%; animation-delay: 1.4s; }
.hero__node--3 { bottom: 8%; left: 4%; animation-delay: 0.8s; }
.hero__node--4 { bottom: 4%; right: 10%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    height: 340px;
    order: -1;
  }
  .hero__desc {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .hero__orbit--b { width: 320px; height: 320px; }
  .hero__orbit--a { width: 250px; height: 250px; }
  .hero__badge { width: 160px; height: 160px; }
  .hero__node { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* ==== components/PageHero/PageHero.css ==== */
.page-hero {
  position: relative;
  padding: 76px 0 64px;
  text-align: center;
  overflow: hidden;
  background: var(--grad-panel);
  height: 464px
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 65%);
  z-index: 1;
}


.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero__eyebrow {
  display: inline-block;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: var(--bg-alt);
  border: 1px solid var(--border-soft-2);
  color: var(--ml-green-deep);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-hero__title {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  color: var(--text-on-dark);
}

.page-hero__title span {
  color: var(--ml-green);
}

.page-hero__desc {
  margin: 18px auto 0;
  max-width: 620px;
  color: var(--text-on-dark-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.page-hero__glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(closest-side, rgba(28, 95, 196, 0.14), transparent 75%);
  z-index: 0;
  pointer-events: none;
}

/* ==== components/SectionTitle/SectionTitle.css ==== */
.section-title {
  max-width: 700px;
  margin-bottom: 46px;
}

.section-title--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title--left {
  text-align: left;
}

.section-title__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-alt);
  border: 1px solid var(--border-soft-2);
  color: var(--ml-green-deep);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title__title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--ml-navy);
}

.section-title__title span {
  color: var(--ml-green);
}

.section-title__desc {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 1.03rem;
  line-height: 1.7;
}

/* ==== components/FeatureCard/FeatureCard.css ==== */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-soft-2);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  color: #fff;
  position: relative;
}

.feature-card__icon img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

/* .feature-card--navy .feature-card__icon { background: linear-gradient(135deg, var(--ml-navy), var(--ml-blue)); }
.feature-card--green .feature-card__icon { background: linear-gradient(135deg, var(--ml-green), var(--ml-green-deep)); }
.feature-card--gold .feature-card__icon { background: var(--grad-gold); color: var(--ml-navy-deep); }
.feature-card--pink .feature-card__icon { background: linear-gradient(135deg, var(--dot-pink), #f0447f); } */

.feature-card__title {
  font-size: 1.06rem;
  color: var(--ml-navy);
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==== components/StatStrip/StatStrip.css ==== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-strip__item {
  background: var(--bg-card);
  padding: 28px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-strip__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  overflow: hidden;
}

.stat-strip__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
}

@media (max-width: 760px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==== components/CTASection/CTASection.css ==== */
.cta {
  margin: 40px 0 0;
  padding: 40px 0;
  /* background: var(--grad-panel); */
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 260px at 8% 20%, rgba(215, 160, 24, 0.18), transparent 60%),
    radial-gradient(500px 300px at 95% 90%, rgba(31, 157, 85, 0.2), transparent 60%);
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta__text h2 {
  color: var(--text-primary);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  max-width: 560px;
}

.cta__text p {
  margin-top: 10px;
  color: var(--text-secondary);
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.6;
}

.cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta__btn {
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta__btn--gold {
  background: var(--grad-gold);
  color: var(--ml-navy-deep);
  box-shadow: var(--shadow-gold);
}

.cta__btn--outline {
  color: var(--text-primary);
  border: 2px solid var(--text-secondary);
}

.cta__btn:hover {
  transform: translateY(-3px);
}

/* ==== components/IncomeTable/IncomeTable.css ==== */
.income-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}

.income-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.income-table thead th {
  background: var(--bg-navy-panel);
  color: #fff;
  text-align: left;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
}

.income-table thead th:first-child { border-radius: var(--radius-md) 0 0 0; }
.income-table thead th:last-child { border-radius: 0 var(--radius-md) 0 0; }

.income-table tbody td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-secondary);
  font-weight: 600;
}

.income-table tbody tr:nth-child(even) {
  background: var(--bg-alt);
}

.income-table tbody tr:hover {
  background: #eef6ee;
}

.income-table__level {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ml-navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.income-table__total {
  color: var(--ml-green-deep);
  font-weight: 800;
}

.income-table tfoot td {
  padding: 18px 20px;
  background: var(--ml-navy-deep);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}

.income-table tfoot td:first-child { border-radius: 0 0 0 var(--radius-md); }
.income-table tfoot td:last-child { border-radius: 0 0 var(--radius-md) 0; color: var(--ml-gold-soft); }

/* ==== components/ContactForm/ContactForm.css ==== */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ml-navy);
}

.contact-form__field input,
.contact-form__field textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft-2);
  background: var(--bg-alt);
  color: var(--text-primary);
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--ml-blue);
  background: #fff;
  outline: none;
}

.contact-form__submit {
  width: 100%;
  padding: 15px;
  border-radius: var(--radius-pill);
  background: var(--grad-brand);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-form__note {
  margin-top: 14px;
  text-align: center;
  color: var(--ml-green-deep);
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 560px) {
  .contact-form {
    padding: 26px 20px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==== components/FileDownloader/FileDownloader.css ==== */
.file-downloader button {
  padding: 10px 20px;
  width: 100%;
  font-size: 16px;
  background-color: var(--bg-card);
  color: var(--ml-navy);
  border: 2px solid var(--border-soft-2);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.file-downloader button:hover {
  background: var(--grad-gold);
  color: var(--text-on-dark);
}
/* ==== pages/Home/Home.css ==== */
.home-stats {
  padding: 50px 0 0px;
}

.home-section {
  padding: 70px 0;
}

.home-section--alt {
  background: linear-gradient(180deg, transparent, rgba(28, 95, 196, 0.04), transparent);
}

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

.home-section__cta {
  text-align: center;
  margin-top: 40px;
}

.home-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--ml-navy);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  background: var(--bg-alt);
  border: 1.5px solid var(--border-soft-2);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.home-link-btn:hover {
  background: var(--ml-navy);
  color: #fff;
  transform: translateY(-2px);
}

.home-about-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

.home-about-panel__text .section-title {
  margin-bottom: 24px;
}

.home-about-panel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-about-panel__badge {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad-panel);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-alt);
}

.home-about-panel__badge span {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
}

.home-about-panel__badge strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ml-gold-soft);
}

@media (max-width: 980px) {
  .home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-about-panel {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }
  .home-about-panel__visual {
    order: -1;
  }
}

@media (max-width: 560px) {
  .home-grid {
    grid-template-columns: 1fr;
  }
  .home-section {
    padding: 50px 0;
  }
}

/* ==== pages/About/About.css ==== */
.about-section {
  padding: 40px 0 70px;
}

.about-section--alt {
  background: linear-gradient(180deg, transparent, rgba(31, 157, 85, 0.05), transparent);
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.about-vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.about-vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-vision-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  opacity: 0.1;
}

.about-vision-card__header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.about-vision-card--vision::before { background: var(--ml-blue); }
.about-vision-card--mission::before { background: var(--ml-green); }
.about-vision-card--goals::before { background: var(--dot-pink); }

.about-vision-card__icon {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.4rem;
  background: var(--bg-alt);
}

.about-vision-card h3 {
  position: relative;
  color: var(--ml-navy);
  font-size: 1.2rem;
}

.about-vision-card p {
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-vision-card ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-vision-card li {
  padding-left: 22px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}

.about-vision-card li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ml-green);
  font-size: 0.7rem;
}

.about-commit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.about-thanks {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 40px;
  background: var(--grad-brand);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.about-thanks h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 14px;
}

.about-thanks p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .about-vision-grid {
    grid-template-columns: 1fr;
  }
  .about-commit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .about-commit-grid {
    grid-template-columns: 1fr;
  }
  .about-thanks {
    padding: 36px 24px;
  }
}

/* ==== pages/Products/Products.css ==== */
.products-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.products-header {
  text-align: center;
  margin-bottom: 3rem;
}

.products-header h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: white;
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  color: var(--text-main);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  background: rgba(0, 51, 153, 0.05);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2.5rem;
  padding: 1rem 0;
}

.product-card {
  background: var(--card-bg, rgba(255, 255, 255, 0.75));
  border: 1px solid var(--glass-border-strong, rgba(18, 53, 107, 0.2));
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-sm, 0 8px 24px rgba(18, 53, 107, 0.04));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

/* Hover State - Cards Elevate and Glow Subtle Border Glow */
.product-card:hover {
  transform: translateY(-10px);
  background: var(--card-hover, rgba(255, 255, 255, 0.95));
  box-shadow: var(--shadow-lg, 0 20px 40px rgba(18, 53, 107, 0.12));
  border-color: var(--ml-blue, #1c5fc4);
}

.product-placeholder-img {
  height: 220px;
  background: linear-gradient(135deg, rgba(28, 95, 196, 0.05), rgba(31, 157, 85, 0.05));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border, rgba(18, 53, 107, 0.1));
}

.prod-img-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.actual-product-image {
  max-width: 98%;
  max-height: 98%;
  object-fit: contain;
  border-radius: var(--radius-sm, 12px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 8px 16px rgba(18, 53, 107, 0.08));
}

/* Dynamic Zoom Effect on hover */
.product-card:hover .actual-product-image {
  transform: scale(1.08) rotate(1deg);
  filter: drop-shadow(0 12px 24px rgba(18, 53, 107, 0.14));
}

/* Premium Floating Badge Style */
.prod-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--ml-navy, #12356b), var(--ml-blue, #1c5fc4));
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill, 999px);
  box-shadow: 0 4px 12px rgba(28, 95, 196, 0.2);
  z-index: 2;
}

.product-info {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.3rem;
  color: var(--text-main, #16233f);
  margin-bottom: 0.6rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.prod-desc {
  font-size: 0.92rem;
  color: var(--text-muted, #4a5872);
  line-height: 1.5;
  height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1rem;
  font-weight: 500;
}

.prod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto; /* Forces structural alignment across varied grid cards */
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light, #7c8aa3);
  letter-spacing: 0.5px;
}

.price-tag {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ml-navy, #12356b);
  letter-spacing: -0.5px;
}

/* Call-to-action button matching premium theme styles */
.buy-btn {
  background: none;
  border: 2px solid var(--ml-green, #1f9d55);
  color: var(--ml-green-deep, #147a41);
  padding: 0.6rem 1.4rem;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: var(--radius-md, 14px);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.buy-btn:hover {
  background: var(--ml-green, #1f9d55);
  color: white;
  box-shadow: 0 6px 20px rgba(31, 157, 85, 0.25);
}

.buy-btn:hover .btn-arrow {
  transform: translateX(3px);
}
/* ==== pages/BusinessOpportunities/BusinessOpportunities.css ==== */
.biz-section {
  padding: 30px 0 70px;
}

.biz-section--alt {
  background: linear-gradient(180deg, transparent, rgba(28, 95, 196, 0.05), transparent);
}

.biz-income-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.biz-income-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.biz-income-card--level { background: linear-gradient(150deg, var(--ml-green), var(--ml-green-deep)); }
.biz-income-card--sponsor { background: linear-gradient(150deg, var(--ml-blue), var(--ml-navy)); }
.biz-income-card--unlimited { background: var(--grad-panel); }

.biz-income-card__icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.biz-income-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.biz-income-card__figure {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ml-gold-soft);
  margin-bottom: 10px;
}

.biz-income-card__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.6;
}

.biz-grid {
  display: grid;
  gap: 22px;
}

.biz-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.biz-reward-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.biz-reward-toggle__pill {
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: var(--ml-green);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.biz-reward-toggle__pill--gold {
  background: var(--grad-gold);
  color: var(--ml-navy-deep);
}

.biz-reward-toggle__or {
  font-weight: 800;
  color: var(--ml-navy);
  font-family: var(--font-display);
}

.biz-total-banner {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--grad-brand);
  padding: 30px 36px;
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.biz-total-banner div {
  display: flex;
  flex-direction: column;
}

.biz-total-banner span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
}

.biz-total-banner strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ml-gold-soft);
}

.biz-total-banner p {
  max-width: 400px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .biz-income-grid {
    grid-template-columns: 1fr;
  }
  .biz-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .biz-grid--five {
    grid-template-columns: 1fr;
  }
  .biz-total-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==== pages/Contact/Contact.css ==== */
.contact-section {
  padding: 6cqi 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info__card {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-info__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-info__card h3 {
  font-size: 0.85rem;
  color: var(--ml-navy);
  margin-bottom: 6px;
}

.contact-info__card p,
.contact-info__card a {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main);
  line-height: 1.6;
  display: block;
}

.contact-info__card a:hover {
  color: var(--ml-blue);
}

.contact-info__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  height: 240px;
}

.contact-info__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrap h2 {
  color: var(--ml-navy);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
