:root {
  --bg: #0c3f9c;
  --bg-soft: #11387f;
  --surface: #122a59;
  --text: #fffef8;
  --muted: rgba(241, 245, 255, 0.86);
  --accent: #ffd339;
  --accent-strong: #ffbf00;
  --border: rgba(255, 219, 36, 0.24);
  --shadow: 0 22px 60px rgba(4, 19, 54, 0.34);
  --font-latin: "Sarala", sans-serif;
  --font-arabic: "Tajawal", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  font-family: var(--font-latin);
  color: var(--text);
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.08) 18%, transparent 42%),
    radial-gradient(circle at 82% 38%, rgba(153, 192, 255, 0.34), transparent 22%),
    radial-gradient(circle at 10% 14%, rgba(44, 123, 255, 0.34), transparent 24%),
    linear-gradient(140deg, #0a378a 0%, #1f62cf 48%, #0f4db6 100%),
    var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

body > * {
  position: relative;
  z-index: 1;
}

.page-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-ambient-orb,
.page-ambient-grid,
.page-ambient-line {
  position: absolute;
}

.page-ambient-orb {
  border-radius: 50%;
  filter: blur(34px);
  mix-blend-mode: screen;
}

.page-ambient-orb-a {
  top: 12%;
  left: -6%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(78, 154, 255, 0.44), transparent 68%);
  animation: orb-drift-a 16s ease-in-out infinite alternate;
}

.page-ambient-orb-b {
  top: 8%;
  right: -6%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 70%);
  animation: orb-drift-b 20s ease-in-out infinite alternate;
}

.page-ambient-orb-c {
  bottom: -4%;
  left: 18%;
  width: 720px;
  height: 420px;
  background: radial-gradient(circle, rgba(86, 173, 255, 0.26), transparent 68%);
  animation: orb-drift-c 22s ease-in-out infinite alternate;
}

.page-ambient-grid {
  inset: -10%;
  background:
    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: 160px 160px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88), transparent 76%);
  opacity: 0.2;
  transform-origin: center;
  animation: grid-float 28s linear infinite;
}

.page-ambient-line {
  width: 44vw;
  min-width: 260px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.84), rgba(169, 214, 255, 0.86), transparent);
  box-shadow:
    0 0 14px rgba(146, 202, 255, 0.32),
    0 0 28px rgba(146, 202, 255, 0.18);
  opacity: 0.42;
  transform: rotate(-18deg);
}

.page-ambient-line-a {
  top: 14%;
  left: -18%;
  animation: line-fly-a 14s linear infinite;
}

.page-ambient-line-b {
  top: 34%;
  right: -22%;
  animation: line-fly-b 18s linear infinite;
}

.page-ambient-line-c {
  top: 62%;
  left: -20%;
  animation: line-fly-c 16s linear infinite;
}

.page-ambient-line-d {
  top: 82%;
  right: -18%;
  animation: line-fly-d 20s linear infinite;
}

html[dir="rtl"] body {
  font-family: var(--font-arabic);
}

a {
  color: inherit;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(9, 43, 110, 0.96), rgba(8, 51, 129, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  margin-left: -8px;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 232px;
  max-width: 42vw;
  height: auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.lang-switcher {
  margin-left: 12px;
}

.lang-switcher select {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(29, 74, 165, 0.84);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.lang-switcher select:focus {
  outline: none;
  border-color: rgba(255, 219, 36, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 211, 61, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 219, 36, 0.86);
  background: linear-gradient(180deg, #ffe35d, #ffc928);
  color: #1b2134;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 10px 22px rgba(16, 38, 89, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.36);
  background: var(--accent-strong);
}

.btn-small {
  font-size: 0.98rem;
  padding: 14px 28px;
}

.btn-ghost {
  background: linear-gradient(180deg, rgba(63, 115, 210, 0.88), rgba(36, 88, 186, 0.92));
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: linear-gradient(180deg, rgba(74, 129, 232, 0.96), rgba(41, 95, 198, 0.96));
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero {
  position: relative;
  padding: 112px 0 110px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: auto -18% -14% -10%;
  height: 420px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 42%, transparent 70%),
    radial-gradient(ellipse at center, rgba(117, 194, 255, 0.3), transparent 68%);
  border-radius: 50%;
  transform: rotate(-8deg);
  opacity: 0.88;
}

.hero::after {
  right: 4%;
  bottom: 18%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 62%);
  filter: blur(6px);
  opacity: 0.58;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.hero-copy-block {
  max-width: 700px;
  padding: 24px 0;
}

.kicker,
.section-kicker {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 222, 112, 0.96);
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.18;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 5.2vw, 5.25rem);
  margin-bottom: 20px;
  text-shadow: 0 3px 12px rgba(11, 28, 68, 0.34);
}

h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  margin-bottom: 26px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.hero-copy {
  color: var(--muted);
  max-width: 740px;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.hero-cta-stack {
  margin-top: 34px;
  display: inline-flex;
  flex-direction: column;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
}

.hero-actions {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-btn-primary,
.hero-btn-secondary {
  min-height: 60px;
  min-width: 230px;
  font-size: 1rem;
}

.hero-offer {
  margin-top: 0;
  width: 100%;
  min-height: 88px;
  padding: 16px 20px 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 219, 36, 0.62);
  background:
    linear-gradient(90deg, rgba(55, 96, 21, 0.92), rgba(39, 72, 19, 0.96)),
    linear-gradient(165deg, rgba(24, 47, 11, 0.98), rgba(10, 24, 7, 0.98));
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1rem, 2.3vw, 1.22rem);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  box-shadow: 0 18px 34px rgba(8, 31, 12, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(10, 8, 3, 0.55);
  filter: brightness(1.03);
}

.hero-offer-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 219, 36, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hero-offer-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.hero-offer-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-offer-content strong {
  line-height: 1.08;
}

.hero-offer-content small {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero-offer-arrow {
  margin-left: auto;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}

.hero-card,
.card,
.contact-card,
.faq-list details {
  background: linear-gradient(160deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
}

.hero-stat-card {
  position: relative;
  justify-self: end;
  width: min(100%, 480px);
  padding: 34px 34px 28px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 219, 36, 0.08), transparent 18%),
    linear-gradient(165deg, rgba(27, 32, 46, 0.96), rgba(10, 16, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 56px rgba(8, 18, 45, 0.36);
}

.hero-stat-title {
  margin: 0 0 18px;
  color: #ffe166;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 800;
}

.hero-stat-list {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 18px;
}

.hero-stat-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(248, 250, 255, 0.92);
  font-size: 1.1rem;
}

.hero-stat-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 211, 57, 0.12);
}

.hero-stat-list strong {
  color: #ffffff;
  font-size: 1.12em;
}

html[dir="rtl"] .hero-card ul {
  padding-left: 0;
  padding-right: 20px;
}

.stat-num {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

html[dir="rtl"] .hero-inline-stats strong,
html[dir="rtl"] .graph-value,
html[dir="rtl"] .graph-percent,
html[dir="rtl"] .hero-offer-content strong,
html[dir="rtl"] .hero-stat-list strong {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  text-align: left;
}

html[dir="rtl"] .hero-card li strong {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.section {
  padding: 72px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading .hero-copy {
  margin: 0;
  max-width: 100%;
}

.section-soft {
  background: linear-gradient(to bottom, transparent, rgba(255, 219, 36, 0.08) 15%, transparent);
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 22px;
  border-radius: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.card-program {
  position: relative;
  padding-top: 26px;
}

.card-program::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 219, 36, 0.06));
}

.card-program-shift {
  transform: none;
}

.program-media {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: flex-start;
}

.program-media img {
  width: min(100%, 168px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(8, 19, 40, 0.45));
}

.program-media-flow {
  padding: 12px 14px;
  border: 1px solid rgba(255, 211, 61, 0.34);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(36, 36, 36, 0.82), rgba(10, 10, 10, 0.92));
  min-height: 186px;
  display: flex;
  align-items: center;
}

.program-media-epay {
  padding: 12px 14px;
  border: 1px solid rgba(255, 211, 61, 0.34);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(36, 36, 36, 0.82), rgba(10, 10, 10, 0.92));
  min-height: 186px;
  display: flex;
  align-items: center;
}

.epay-canvas {
  position: relative;
  width: 100%;
  height: 118px;
}

.epay-phone {
  position: absolute;
  left: 18px;
  top: 16px;
  width: 52px;
  height: 88px;
  border-radius: 12px;
  border: 2px solid rgba(255, 215, 129, 0.56);
  background: linear-gradient(180deg, #2c2c2c, #111111);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.54);
}

.epay-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  width: 18px;
  height: 3px;
  border-radius: 8px;
  background: rgba(199, 217, 246, 0.65);
}

.epay-send-btn {
  position: absolute;
  left: 84px;
  top: 23px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 211, 61, 0.38);
  background: rgba(255, 211, 61, 0.14);
  color: #ffe48d;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 1;
}

.epay-arrow {
  position: absolute;
  left: 84px;
  top: 58px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #ffd33d, rgba(255, 211, 61, 0.4));
}

.epay-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #ffd33d;
}

.epay-coin {
  position: absolute;
  right: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #2a1d0a;
  background: #ffd33d;
  box-shadow: 0 4px 12px rgba(255, 211, 61, 0.35);
  opacity: 1;
}

.epay-coin-1 {
  top: 44px;
}

.epay-coin-2 {
  top: 71px;
}

.epay-success {
  position: absolute;
  left: 84px;
  top: 84px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(78, 220, 145, 0.35);
  background: rgba(78, 220, 145, 0.13);
  color: #bbffd7;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 1;
}

.flow-diagram {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.flow-node-shape {
  fill: rgba(20, 20, 20, 0.96);
  stroke: rgba(255, 211, 61, 0.36);
  stroke-width: 2;
}

.flow-node-shape-center {
  stroke: rgba(255, 211, 61, 0.5);
}

.flow-node-shape-agent {
  fill: rgba(28, 28, 28, 0.96);
}

.flow-node-text {
  fill: #fff7d4;
  font-size: 13px;
  font-weight: 700;
  text-anchor: middle;
}

.flow-node-text-center {
  font-size: 14px;
}

.flow-line {
  stroke: #ffd33d;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 10 8;
}

.flow-line-label {
  fill: #fff0ad;
  font-size: 11px;
  font-weight: 700;
  text-anchor: middle;
}

.flow-line-label-bottom {
  text-anchor: start;
  font-size: 10px;
}

.flow-line-label-bottom-left {
  text-anchor: end;
}

.flow-line-label-bottom-right {
  text-anchor: start;
}

.program-media-graph {
  padding: 12px 14px;
  border: 1px solid rgba(255, 211, 61, 0.34);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(36, 36, 36, 0.82), rgba(10, 10, 10, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-height: 186px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-media-builder {
  padding: 12px 14px;
  border: 1px solid rgba(255, 211, 61, 0.34);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(36, 36, 36, 0.82), rgba(10, 10, 10, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-height: 186px;
  display: flex;
  align-items: center;
}

.builder-canvas {
  position: relative;
  width: 100%;
  height: 88px;
}

.builder-banner {
  position: absolute;
  left: 12px;
  top: 10px;
  width: calc(100% - 24px);
  height: 68px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(155deg, rgba(34, 34, 34, 0.96), rgba(12, 12, 12, 0.96));
  opacity: 0;
}

.builder-strip {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 34px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 211, 61, 0.88);
}

.builder-title {
  position: absolute;
  left: 10px;
  top: 24px;
  width: 52px;
  height: 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.13);
}

.builder-cta {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 211, 61, 0.92);
}

.builder-piece {
  position: absolute;
  border-radius: 7px;
  opacity: 0;
}

.piece-text {
  left: 8px;
  top: -6px;
  width: 52px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

.piece-image {
  right: 0;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 211, 61, 0.95);
}

.piece-button {
  right: 14px;
  bottom: -8px;
  width: 48px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 211, 61, 0.9);
}

.graph-top {
  display: grid;
  grid-template-columns: auto minmax(104px, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.graph-dollar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #2d1d07;
  background: var(--accent);
}

.graph-value {
  color: #fff9e5;
  font-size: 1rem;
  letter-spacing: 0.02em;
  min-width: 104px;
  font-variant-numeric: tabular-nums;
}

.graph-percent {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 211, 61, 0.36);
  background: rgba(255, 211, 61, 0.12);
  color: #fff1ba;
  font-size: 0.74rem;
  font-weight: 800;
  min-width: 52px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.graph-svg {
  width: 100%;
  height: auto;
  display: block;
}

.graph-area {
  fill: rgba(255, 211, 61, 0.12);
}

.graph-line {
  fill: none;
  stroke: #ffd33d;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
}

.graph-dot {
  fill: #ffd33d;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.program-media-flow.is-animating .flow-line {
  animation: flow-stream 1.2s linear infinite;
}

.program-media-builder.is-animating .builder-banner {
  animation: builder-fade 0.32s ease 0.2s both;
}

.program-media-builder.is-animating .piece-text {
  animation: piece-text-in 0.62s cubic-bezier(0.2, 0.9, 0.2, 1) 0.44s both;
}

.program-media-builder.is-animating .piece-image {
  animation: piece-image-in 0.62s cubic-bezier(0.2, 0.9, 0.2, 1) 0.7s both;
}

.program-media-builder.is-animating .piece-button {
  animation: piece-button-in 0.62s cubic-bezier(0.2, 0.9, 0.2, 1) 0.96s both;
}

.program-media-graph.is-animating .graph-line {
  animation: grow-line 1.9s ease-out forwards;
}

.program-media-epay.is-animating .epay-phone {
  animation: phone-in 0.36s ease 0.1s both;
}

.program-media-epay.is-animating .epay-send-btn {
  animation: send-in 0.34s ease 0.52s both;
}

.program-media-epay.is-animating .epay-arrow {
  animation: arrow-grow 0.42s ease 0.9s both;
}

.program-media-epay.is-animating .epay-coin-1 {
  animation: coin-fly-1 0.46s ease 1.06s both;
}

.program-media-epay.is-animating .epay-coin-2 {
  animation: coin-fly-2 0.46s ease 1.18s both;
}

.program-media-epay.is-animating .epay-success {
  animation: success-in 0.34s ease 1.54s both;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.benefit-card {
  padding-top: 18px;
}

.benefit-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.benefit-head h3 {
  margin: 0;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 12px;
  border: 1px solid rgba(255, 211, 61, 0.34);
  background: linear-gradient(165deg, rgba(34, 34, 34, 0.96), rgba(10, 10, 10, 0.96));
  position: relative;
  overflow: hidden;
}

.icon-money::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 9px;
  height: 8px;
  border-radius: 6px;
  background: rgba(255, 211, 61, 0.22);
}

.icon-money .coin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffd33d;
  box-shadow: inset 0 -2px 0 rgba(205, 152, 10, 0.5);
  opacity: 1;
}

.icon-money .coin-1 {
  left: 18px;
  top: 12px;
  animation: coin-drop-1 4.8s ease-in-out infinite;
}

.icon-money .coin-2 {
  left: 20px;
  top: 8px;
  animation: coin-drop-2 4.8s ease-in-out infinite;
}

.icon-money .coin-3 {
  left: 22px;
  top: 4px;
  animation: coin-drop-3 4.8s ease-in-out infinite;
}

.money-plus {
  position: absolute;
  right: 9px;
  top: 10px;
  color: #ffe48d;
  font-size: 0.95rem;
  font-weight: 800;
  opacity: 0;
  animation: plus-pop 4.8s ease-in-out 0.9s infinite;
}

.chat-bubble {
  position: absolute;
  left: 8px;
  top: 10px;
  width: 34px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(36, 26, 14, 0.92);
}

.chat-bubble::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -5px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: rgba(36, 26, 14, 0.92);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.typing-dot {
  position: absolute;
  top: 19px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #dbe7ff;
  opacity: 0.2;
  animation: typing 1.1s ease-in-out infinite;
}

.dot-1 {
  left: 16px;
}

.dot-2 {
  left: 22px;
  animation-delay: 0.15s;
}

.dot-3 {
  left: 28px;
  animation-delay: 0.3s;
}

.support-check {
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: #9dffcb;
  font-size: 0.8rem;
  font-weight: 800;
  opacity: 0;
  animation: check-pop 3.6s ease-in-out infinite;
}

.mk-banner {
  position: absolute;
  left: 8px;
  top: 11px;
  width: 40px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(155deg, rgba(63, 45, 23, 0.95), rgba(33, 24, 13, 0.92));
  opacity: 0.55;
}

.mk-banner::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 12px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 211, 61, 0.88);
}

.mk-banner::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 14px;
  width: 18px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.14);
}

.mk-piece {
  position: absolute;
  border-radius: 6px;
  background: rgba(255, 211, 61, 0.9);
  opacity: 0;
}

.mk-piece-title {
  left: 2px;
  top: 0;
  width: 16px;
  height: 6px;
  animation: mk-piece-title-in 4.8s ease-in-out infinite;
}

.mk-piece-media {
  right: -1px;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  animation: mk-piece-media-in 4.8s ease-in-out infinite;
}

.mk-piece-cta {
  right: 6px;
  bottom: 1px;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  animation: mk-piece-cta-in 4.8s ease-in-out infinite;
}

.globe-core {
  position: absolute;
  left: 9px;
  top: 9px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 211, 61, 0.82);
  box-shadow: inset 0 0 0 7px rgba(255, 211, 61, 0.08);
  animation: globe-rotate 4.2s linear infinite;
}

.globe-core::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1px;
  transform: translateX(-50%);
  width: 10px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 211, 61, 0.55);
}

.globe-core::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 211, 61, 0.55);
}

.globe-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffd33d;
  opacity: 0;
  animation: dot-pop 4.2s ease-in-out infinite;
}

.globe-dot-1 {
  right: 8px;
  top: 10px;
}

.globe-dot-2 {
  right: 5px;
  top: 25px;
  animation-delay: 0.3s;
}

.globe-dot-3 {
  right: 14px;
  top: 40px;
  animation-delay: 0.6s;
}

.globe-link {
  position: absolute;
  left: 35px;
  height: 2px;
  background: rgba(255, 211, 61, 0.72);
  transform: scaleX(0);
  transform-origin: left center;
  animation: link-draw 4.2s ease-in-out infinite;
}

.globe-link-1 {
  top: 18px;
  width: 14px;
}

.globe-link-2 {
  top: 33px;
  width: 12px;
  animation-delay: 0.35s;
}

.card ul {
  list-style: none;
  margin: 14px 0 0;
  padding-left: 0;
  color: var(--muted);
}

.card li + li {
  margin-top: 8px;
}

.card li {
  position: relative;
  padding-left: 18px;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.program-cta-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffe48d;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.program-cta-link::after {
  content: "->";
}

.program-cta-link:hover {
  color: var(--accent);
}

.section-heading-programs {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  margin-bottom: 42px;
}

.section-heading-programs .hero-copy {
  max-width: 760px;
}

.program-cards-showcase {
  align-items: stretch;
}

.program-cards-showcase .card-program {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 28px 30px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 46px rgba(8, 24, 58, 0.26);
}

.program-cards-showcase .card-program::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.2), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at 50% 110%, rgba(255, 255, 255, 0.2), transparent 36%);
  opacity: 0.72;
  pointer-events: none;
}

.program-cards-showcase .card-program > * {
  position: relative;
  z-index: 1;
}

.program-cards-showcase .card-program h3 {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: clamp(1.48rem, 2.1vw, 1.95rem);
  line-height: 1.03;
  min-height: 82px;
}

.card-program-affiliate {
  background:
    radial-gradient(circle at 54% 8%, rgba(255, 255, 255, 0.42), transparent 26%),
    radial-gradient(circle at 50% 112%, rgba(132, 196, 255, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(138, 190, 255, 0.26), transparent 24%),
    linear-gradient(180deg, #2e6dd4 0%, #173f8d 52%, #133774 100%);
}

.card-program-affiliate::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -12%;
  bottom: 14%;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(129, 195, 255, 0.16), rgba(56, 114, 208, 0.02));
  transform: rotate(-6deg);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.affiliate-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.affiliate-glow,
.affiliate-bill,
.affiliate-coin {
  position: absolute;
}

.affiliate-glow {
  border-radius: 50%;
  filter: blur(20px);
}

.affiliate-glow-top {
  top: 4%;
  left: 18%;
  width: 220px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 68%);
}

.affiliate-glow-bottom {
  bottom: 16%;
  left: 8%;
  width: 300px;
  height: 120px;
  background: radial-gradient(circle, rgba(131, 196, 255, 0.26), transparent 70%);
}

.affiliate-bill {
  width: 94px;
  height: 42px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(216, 248, 223, 0.9), rgba(150, 199, 165, 0.96));
  box-shadow:
    inset 0 0 0 2px rgba(76, 116, 83, 0.2),
    0 10px 18px rgba(9, 20, 44, 0.22);
  opacity: 0.74;
}

.affiliate-bill::before,
.affiliate-bill::after {
  content: "";
  position: absolute;
}

.affiliate-bill::before {
  inset: 6px 10px;
  border: 1px solid rgba(59, 101, 69, 0.28);
  border-radius: 4px;
}

.affiliate-bill::after {
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(64, 112, 78, 0.18);
  box-shadow:
    -24px 0 0 -8px rgba(64, 112, 78, 0.16),
    24px 0 0 -8px rgba(64, 112, 78, 0.16);
}

.affiliate-bill-a {
  left: -4%;
  bottom: 14%;
  transform: rotate(-17deg);
}

.affiliate-bill-b {
  left: 22%;
  bottom: 6%;
  transform: rotate(12deg);
}

.affiliate-bill-c {
  right: -2%;
  bottom: 11%;
  transform: rotate(-11deg);
}

.affiliate-coin {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 246, 182, 0.88), transparent 26%),
    linear-gradient(145deg, #ffe15f, #d69a00);
  box-shadow:
    inset 0 0 0 5px rgba(255, 191, 0, 0.32),
    inset 0 -8px 0 rgba(155, 98, 0, 0.24),
    0 14px 24px rgba(16, 33, 71, 0.28);
}

.affiliate-coin::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid rgba(193, 126, 8, 0.34);
}

.affiliate-coin-a {
  left: -7%;
  top: 38%;
  width: 60px;
  height: 60px;
}

.affiliate-coin-b {
  left: 62%;
  bottom: 8%;
  transform: rotate(18deg);
}

.affiliate-coin-c {
  right: 4%;
  bottom: 2%;
  width: 58px;
  height: 58px;
  transform: rotate(-8deg);
}

.card-program-teamcash {
  background:
    radial-gradient(circle at 50% 16%, rgba(111, 222, 100, 0.34), transparent 18%),
    radial-gradient(circle at 50% 78%, rgba(255, 196, 71, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(21, 74, 29, 0.26), transparent 16%),
    linear-gradient(180deg, #071018 0%, #08111a 32%, #071018 100%);
  border-color: rgba(77, 160, 73, 0.46);
  box-shadow:
    0 24px 46px rgba(8, 24, 58, 0.26),
    inset 0 0 0 1px rgba(49, 122, 54, 0.18);
}

.card-program-epayment {
  background:
    radial-gradient(circle at 58% 16%, rgba(175, 207, 255, 0.24), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(255, 190, 67, 0.12), transparent 16%),
    linear-gradient(180deg, rgba(177, 208, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #213b67 0%, #101d34 100%);
}

.card-program-teamcash::after,
.card-program-epayment::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -12%;
  bottom: 14%;
  height: 180px;
  border-radius: 50%;
  transform: rotate(-6deg);
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
}

.card-program-teamcash::after {
  background:
    radial-gradient(ellipse at center, rgba(255, 210, 96, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(86, 177, 73, 0.12), rgba(70, 134, 29, 0.01));
}

.card-program-epayment::after {
  background:
    radial-gradient(ellipse at center, rgba(168, 209, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(95, 157, 255, 0.16), rgba(28, 54, 104, 0.02));
}

.teamcash-scene,
.epayment-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.teamcash-glow,
.teamcash-beam,
.teamcash-bill,
.teamcash-chip-card,
.epayment-glow,
.epayment-orb,
.epayment-streak,
.epayment-card,
.epayment-terminal {
  position: absolute;
}

.teamcash-glow,
.epayment-glow,
.epayment-orb {
  border-radius: 50%;
  filter: blur(18px);
}

.teamcash-glow-top {
  top: 18%;
  left: 14%;
  width: 280px;
  height: 180px;
  background: radial-gradient(circle, rgba(149, 255, 128, 0.2), transparent 70%);
}

.teamcash-glow-bottom {
  bottom: 12%;
  left: 18%;
  width: 260px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 194, 79, 0.12), transparent 72%);
}

.teamcash-beam {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 77, 0.62), transparent);
  box-shadow: 0 0 18px rgba(255, 212, 77, 0.16);
  opacity: 0.54;
}

.teamcash-beam-a {
  left: -4%;
  right: 10%;
  top: 38%;
  transform: rotate(11deg);
}

.teamcash-beam-b {
  left: 6%;
  right: -8%;
  bottom: 18%;
  transform: rotate(-13deg);
}

.teamcash-bill {
  width: 118px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(225, 244, 207, 0.92), rgba(167, 201, 146, 0.94));
  box-shadow:
    inset 0 0 0 2px rgba(74, 110, 62, 0.2),
    0 14px 24px rgba(12, 35, 15, 0.2);
  opacity: 0.2;
}

.teamcash-bill::before,
.teamcash-bill::after {
  content: "";
  position: absolute;
}

.teamcash-bill::before {
  inset: 7px 10px;
  border: 1px solid rgba(79, 110, 72, 0.26);
  border-radius: 6px;
}

.teamcash-bill::after {
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(83, 123, 74, 0.16);
}

.teamcash-bill-a {
  left: -2%;
  top: 34%;
  transform: rotate(-17deg);
}

.teamcash-bill-b {
  right: 6%;
  top: 30%;
  transform: rotate(14deg);
}

.teamcash-bill-c {
  left: 10%;
  bottom: 10%;
  transform: rotate(9deg);
}

.teamcash-chip-card {
  right: 10%;
  bottom: 28%;
  width: 138px;
  height: 84px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(29, 111, 59, 0.96), rgba(15, 58, 30, 0.98)),
    linear-gradient(180deg, rgba(255, 240, 174, 0.08), transparent 52%);
  border: 1px solid rgba(255, 227, 139, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 28px rgba(8, 26, 11, 0.22);
  opacity: 0.18;
  transform: rotate(-10deg);
}

.card-program-teamcash .program-panel-image {
  min-height: 0;
  padding: 4px 0 10px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.card-program-teamcash .program-panel-image img {
  width: min(100%, 320px);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(21, 37, 10, 0.34));
}

.program-panel-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 318px;
  padding: 18px;
}

.card-program-affiliate .program-panel,
.card-program-epayment .program-panel {
  min-height: 286px;
}

.card-program-affiliate .program-panel {
  min-height: 0;
  margin-bottom: 8px;
}

.card-program-affiliate .program-list,
.card-program-teamcash .program-list,
.card-program-epayment .program-list {
  margin-top: 6px;
}

.teamcash-chip-card::before,
.teamcash-chip-card::after {
  content: "";
  position: absolute;
}

.teamcash-chip-card::before {
  right: 14px;
  bottom: 14px;
  width: 26px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffe672, #e4b600);
}

.teamcash-chip-card::after {
  left: 16px;
  top: 18px;
  width: 62px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 0 rgba(255, 255, 255, 0.14);
}

.epayment-glow-top {
  top: 4%;
  left: 24%;
  width: 240px;
  height: 120px;
  background: radial-gradient(circle, rgba(196, 223, 255, 0.26), transparent 72%);
}

.epayment-glow-bottom {
  bottom: 12%;
  left: 10%;
  width: 320px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 190, 67, 0.14), transparent 72%);
}

.epayment-orb-a {
  top: 28%;
  left: 14%;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, rgba(255, 219, 141, 0.8), transparent 72%);
}

.epayment-orb-b {
  top: 24%;
  right: 18%;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, rgba(170, 216, 255, 0.78), transparent 72%);
}

.epayment-streak {
  left: -6%;
  right: -2%;
  top: 42%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 195, 89, 0.82), rgba(163, 210, 255, 0.56), transparent);
  box-shadow: 0 0 18px rgba(129, 182, 255, 0.16);
  transform: rotate(-7deg);
  opacity: 0.72;
}

.epayment-card {
  width: 112px;
  height: 74px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(61, 102, 174, 0.94), rgba(23, 46, 92, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%);
  border: 1px solid rgba(177, 208, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 28px rgba(8, 18, 38, 0.18);
  opacity: 0.42;
}

.epayment-card::before,
.epayment-card::after {
  content: "";
  position: absolute;
}

.epayment-card::before {
  left: 14px;
  top: 18px;
  width: 38px;
  height: 20px;
  border-radius: 6px;
  background: rgba(235, 245, 255, 0.92);
}

.epayment-card::after {
  right: 14px;
  top: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 196, 68, 0.88);
  box-shadow: -10px 0 0 rgba(242, 92, 78, 0.82);
}

.epayment-card-a {
  right: 4%;
  top: 34%;
}

.epayment-card-b {
  right: 10%;
  top: 50%;
  transform: scale(0.88);
  opacity: 0.3;
}

.epayment-terminal {
  left: 4%;
  bottom: 23%;
  width: 120px;
  height: 164px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(53, 71, 102, 0.78), rgba(9, 16, 30, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%);
  border: 1px solid rgba(184, 210, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 34px rgba(7, 13, 27, 0.26);
  opacity: 0.3;
  transform: rotate(-10deg);
}

.epayment-terminal::before,
.epayment-terminal::after {
  content: "";
  position: absolute;
}

.epayment-terminal::before {
  left: 16px;
  right: 16px;
  top: 22px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(34, 53, 87, 0.92), rgba(18, 31, 57, 0.98));
  box-shadow: inset 0 0 0 1px rgba(181, 209, 255, 0.1);
}

.epayment-terminal::after {
  left: 18px;
  right: 18px;
  bottom: 20px;
  height: 48px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(230, 90, 74, 0.86) 0 24%, rgba(255, 205, 82, 0.88) 24% 49%, rgba(92, 232, 103, 0.86) 49% 74%, rgba(104, 170, 255, 0.84) 74% 100%);
}

.program-panel {
  margin-bottom: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(6, 19, 49, 0.28), rgba(6, 16, 34, 0.4));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card-program-affiliate .program-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.card-program-teamcash .program-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.card-program-epayment .program-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.program-panel-table {
  padding: 16px;
}

.program-panel-title {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.96rem;
  font-weight: 800;
}

.program-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
}

.program-table span,
.program-table strong {
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.program-table span:nth-child(-n + 3) {
  background: rgba(8, 19, 47, 0.4);
  color: rgba(241, 246, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
}

.program-table strong {
  background: rgba(255, 255, 255, 0.04);
  color: #ffd856;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.card-program-affiliate .program-table span {
  background: rgba(6, 20, 48, 0.5);
}

.card-program-affiliate .program-table strong {
  background: linear-gradient(180deg, rgba(73, 115, 184, 0.18), rgba(255, 255, 255, 0.04));
  color: #ffffff;
}

.card-program-affiliate .program-table strong:last-child {
  color: #ffd856;
}

.program-table span:nth-child(3),
.program-table strong:nth-child(6) {
  border-right: 0;
}

.program-panel-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 318px;
  padding: 12px;
}

.program-panel-image img {
  width: min(100%, 360px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 32px rgba(7, 15, 24, 0.32));
}

.card-program-teamcash .program-panel-image img {
  width: min(100%, 360px);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 22px 30px rgba(21, 37, 10, 0.34));
}

.card-program-teamcash .program-panel-image {
  min-height: 0;
  padding: 8px 0 14px;
}

.card-program-teamcash .program-panel-image img {
  width: min(100%, 420px);
}

.card-program-epayment .program-panel-image {
  min-height: 0;
  padding: 8px 0 14px;
}

.card-program-epayment .program-panel-image img {
  width: min(100%, 380px);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 22px 30px rgba(7, 14, 28, 0.34));
}

.program-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.program-list li {
  position: relative;
  padding: 0 0 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(250, 252, 255, 0.94);
  font-size: 1.08rem;
}

.program-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.program-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(255, 211, 57, 0.1);
}

.program-card-cta {
  margin-top: auto;
  min-height: 60px;
  width: 100%;
  font-size: 1rem;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 61, 0.4);
}

.card:hover .program-media {
  transform: translateY(-1px);
  transition: transform 0.22s ease;
}

@keyframes grow-line {
  from {
    stroke-dashoffset: 360;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.24);
  }
}

@keyframes flow-stream {
  from {
    stroke-dashoffset: 18;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes node-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes line-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes line-grow-tilt-up {
  from {
    transform: scaleX(0) rotate(-20deg);
  }
  to {
    transform: scaleX(1) rotate(-20deg);
  }
}

@keyframes line-grow-tilt-down {
  from {
    transform: scaleX(0) rotate(20deg);
  }
  to {
    transform: scaleX(1) rotate(20deg);
  }
}

@keyframes plus-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes builder-fade {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes piece-text-in {
  from {
    opacity: 0;
    transform: translate(8px, -10px);
  }
  to {
    opacity: 1;
    transform: translate(14px, 18px);
  }
}

@keyframes piece-image-in {
  from {
    opacity: 0;
    transform: translate(10px, -2px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-14px, 12px) scale(1);
  }
}

@keyframes piece-button-in {
  from {
    opacity: 0;
    transform: translate(10px, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-10px, -16px);
  }
}

@keyframes coin-drop-1 {
  0%,
  100% {
    transform: translateY(-14px);
    opacity: 0;
  }
  22%,
  78% {
    transform: translateY(18px);
    opacity: 1;
  }
}

@keyframes coin-drop-2 {
  0%,
  10%,
  100% {
    transform: translateY(-16px);
    opacity: 0;
  }
  34%,
  80% {
    transform: translateY(24px);
    opacity: 1;
  }
}

@keyframes coin-drop-3 {
  0%,
  20%,
  100% {
    transform: translateY(-18px);
    opacity: 0;
  }
  46%,
  84% {
    transform: translateY(30px);
    opacity: 1;
  }
}

@keyframes plus-pop {
  0%,
  45%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
  56%,
  84% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes typing {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

@keyframes check-pop {
  0%,
  52%,
  100% {
    opacity: 0;
    transform: translateY(2px);
  }
  65%,
  88% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mk-piece-title-in {
  0%,
  100% {
    opacity: 0;
    transform: translate(6px, -7px);
  }
  22%,
  76% {
    opacity: 1;
    transform: translate(11px, 15px);
  }
}

@keyframes mk-piece-media-in {
  0%,
  12%,
  100% {
    opacity: 0;
    transform: translate(8px, -4px) scale(0.8);
  }
  34%,
  80% {
    opacity: 1;
    transform: translate(-8px, 6px) scale(1);
  }
}

@keyframes mk-piece-cta-in {
  0%,
  24%,
  100% {
    opacity: 0;
    transform: translate(8px, 8px);
  }
  44%,
  82% {
    opacity: 1;
    transform: translate(-8px, -6px);
  }
}

@keyframes sound-wave {
  0%,
  100% {
    opacity: 0;
    transform: scaleX(0.5);
  }
  30%,
  68% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes globe-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes dot-pop {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }
  36%,
  80% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes link-draw {
  0%,
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
  34%,
  78% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes phone-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes send-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrow-grow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 94px;
    opacity: 1;
  }
}

@keyframes coin-fly-1 {
  from {
    opacity: 0;
    transform: translateX(-26px) translateY(-5px) scale(0.76);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes coin-fly-2 {
  from {
    opacity: 0;
    transform: translateX(-32px) translateY(-10px) scale(0.72);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes success-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orb-drift-a {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(10%, 6%, 0) scale(1.12);
  }
}

@keyframes orb-drift-b {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-8%, 10%, 0) scale(1.08);
  }
}

@keyframes orb-drift-c {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(6%, -8%, 0) scale(1.1);
  }
}

@keyframes grid-float {
  0% {
    transform: perspective(900px) rotateX(74deg) translateY(-2%) scale(1.08);
  }
  50% {
    transform: perspective(900px) rotateX(73deg) translateY(1%) scale(1.1);
  }
  100% {
    transform: perspective(900px) rotateX(74deg) translateY(-2%) scale(1.08);
  }
}

@keyframes line-fly-a {
  0% {
    transform: translate3d(-18vw, 0, 0) rotate(-18deg);
    opacity: 0;
  }
  12%,
  72% {
    opacity: 0.55;
  }
  100% {
    transform: translate3d(92vw, 8vh, 0) rotate(-18deg);
    opacity: 0;
  }
}

@keyframes line-fly-b {
  0% {
    transform: translate3d(18vw, 0, 0) rotate(-18deg);
    opacity: 0;
  }
  14%,
  74% {
    opacity: 0.42;
  }
  100% {
    transform: translate3d(-94vw, 10vh, 0) rotate(-18deg);
    opacity: 0;
  }
}

@keyframes line-fly-c {
  0% {
    transform: translate3d(-12vw, 0, 0) rotate(-18deg);
    opacity: 0;
  }
  10%,
  70% {
    opacity: 0.46;
  }
  100% {
    transform: translate3d(90vw, -8vh, 0) rotate(-18deg);
    opacity: 0;
  }
}

@keyframes line-fly-d {
  0% {
    transform: translate3d(16vw, 0, 0) rotate(-18deg);
    opacity: 0;
  }
  12%,
  76% {
    opacity: 0.36;
  }
  100% {
    transform: translate3d(-88vw, -10vh, 0) rotate(-18deg);
    opacity: 0;
  }
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-contact {
  position: relative;
  padding-bottom: 92px;
  padding-top: 84px;
}

.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(95, 158, 255, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(21, 72, 170, 0.94), rgba(10, 49, 126, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.section-contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  align-items: start;
}

.contact-card {
  padding: 22px;
  min-width: 320px;
  display: grid;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(160deg, rgba(26, 52, 104, 0.98), rgba(12, 27, 58, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 46px rgba(8, 24, 58, 0.24);
}

.contact-card a {
  text-decoration: none;
}

.contact-card a:not(.btn) {
  color: rgba(245, 248, 255, 0.92);
  font-weight: 700;
}

.chat-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.chat-dock-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 211, 61, 0.58);
  color: #111111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.chat-dock-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 5, 2, 0.4);
  filter: saturate(1.06);
}

.chat-dock-link-wa {
  background: linear-gradient(145deg, #ffd83d, #ffbf00);
}

.chat-dock-link-tg {
  background: linear-gradient(145deg, #ffe58a, #ffd33d);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .page-ambient-orb,
  .page-ambient-grid,
  .page-ambient-line,
  .graph-dot,
  .program-media-flow.is-animating .flow-line,
  .icon-money .coin-1,
  .icon-money .coin-2,
  .icon-money .coin-3,
  .money-plus,
  .typing-dot,
  .support-check,
  .mk-piece-title,
  .mk-piece-media,
  .mk-piece-cta,
  .globe-core,
  .globe-dot,
  .globe-link {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    backdrop-filter: none;
  }

  .logo img {
    width: 170px;
    max-width: 46vw;
  }

  .site-nav {
    position: absolute;
    top: 87px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 14px 4%;
    background: rgba(10, 47, 122, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    margin-left: 12px;
  }

  .header-inner > .btn-small {
    display: none;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .lang-switcher select {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .hero-grid,
  .cards-3,
  .cards-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-offer {
    width: 100%;
    min-height: 74px;
    font-size: clamp(0.92rem, 4vw, 1.02rem);
    padding: 14px 16px;
  }

  .hero-cta-stack {
    display: flex;
    width: 100%;
  }

  .hero-copy-block {
    max-width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    min-width: 0;
    flex: 1 1 220px;
  }

  .hero-stat-card {
    justify-self: stretch;
    width: 100%;
  }

  .program-cards-showcase .card-program {
    padding: 28px 22px 24px;
  }

  .program-panel-image {
    min-height: 260px;
  }

  .hero-offer-content small {
    font-size: 0.82rem;
  }

  .contact-card {
    min-width: 0;
  }

  .chat-dock {
    right: 12px;
    bottom: 12px;
  }

  .chat-dock-link {
    min-width: 112px;
    padding: 9px 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 76px 0 82px;
  }

  .header-inner {
    gap: 12px;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
  }

  .hero-stat-card {
    padding: 26px 22px 22px;
  }

  .hero-stat-list li {
    font-size: 1rem;
  }

  .section-heading-programs {
    margin-bottom: 30px;
  }

  .program-cards-showcase .card-program h3 {
    font-size: 1.9rem;
  }

  .program-table span,
  .program-table strong {
    padding: 12px 8px;
  }

  .program-list li {
    font-size: 1rem;
  }

  .section {
    padding: 58px 0;
  }

  .flow-node-text {
    font-size: 11px;
  }

  .flow-node-text-center {
    font-size: 12px;
  }

  .flow-line-label {
    font-size: 9px;
  }
}
