:root {
  --green-900: #00391c;
  --green-800: #00391c;
  --green-700: #00391c;
  --green-600: #2ca35c;
  --green-400: #66c282;
  --green-100: #bde8c7;
  --lime: #c8e628;
  --paper: #f7fff8;
  --paper-2: #e8f5ea;
  --ink: #17352e;
  --muted: #5d706b;
  --line: rgba(15, 81, 50, 0.16);
  --white: #ffffff;
  --mentor-sky: #dceee9;
  --mentor-lime: #e2f39b;
  --mentor-mint: #cdebd8;
  --mentor-warm: #f5edcf;
  --shadow: 0 18px 45px rgba(4, 61, 51, 0.14);
  --radius: 8px;
  --container: 1180px;
  --hero-container: 1760px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  max-width: 680px;
  font-size: 4rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 1.1rem;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
  position: relative;
}

.section-dark {
  background: var(--green-900);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p,
.on-dark h2,
.on-dark p {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--hero-container)) / 2));
  background: rgba(4, 61, 51, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.3s ease, min-height 0.3s ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 16px 36px rgba(4, 61, 51, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-size: 0.83rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.main-nav a {
  padding: 34px 0;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--lime);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 26px;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.nav-cta,
.btn-primary {
  background: var(--lime);
  color: var(--green-900);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 26px rgba(200, 230, 40, 0.16);
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.16);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--green-700);
  cursor: pointer;
  place-items: center;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 94px 0 112px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 62%;
  height: 46%;
  background: var(--lime);
  opacity: 0.18;
  border-top-left-radius: 360px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 61, 51, 0.96) 0%, rgba(4, 61, 51, 0.84) 44%, rgba(4, 61, 51, 0.44) 100%),
    url("assets/hero-migranpreneur.jpg") right center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  padding-top: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  border: 1px solid rgba(200, 230, 40, 0.42);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--lime);
  background: rgba(15, 81, 50, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section:not(.section-dark) .eyebrow,
.trust-strip .eyebrow {
  color: var(--green-800);
  background: var(--green-100);
  border-color: rgba(15, 81, 50, 0.18);
}

.hero-lede {
  max-width: 650px;
  margin-top: 24px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.registration-countdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
  max-width: 330px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 7px 14px;
  color: var(--white);
  background: rgba(4, 61, 51, 0.46);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.countdown-caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.countdown-units {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-top: 2px;
}

.countdown-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.countdown-unit strong {
  min-width: 22px;
  color: var(--lime);
  font-size: 1.08rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-unit small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.6rem;
  font-weight: 800;
}

.registration-countdown.is-closed {
  border-color: rgba(255, 255, 255, 0.42);
}

.registration-countdown.is-closed .countdown-units {
  display: none;
}

.info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.info-bar span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.hero-panel {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  border-radius: 8px 8px 8px 120px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  max-width: 300px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 81, 50, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.8rem;
}

.hero-badge span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.trust-strip {
  padding: 58px 0;
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.trust-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 61, 51, 0.06);
}

.trust-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.split-grid,
.process-grid,
.organizer-grid,
.faq-grid,
.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.visual-stack {
  position: relative;
  min-height: 520px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

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

.photo-main {
  left: 0;
  top: 0;
  width: 78%;
  height: 300px;
}

.photo-accent {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 300px;
}

.mini-stat {
  position: absolute;
  left: 16%;
  bottom: 74px;
  z-index: 2;
  width: 220px;
  border-radius: var(--radius);
  padding: 22px;
  background: var(--green-100);
  border: 1px solid rgba(15, 81, 50, 0.14);
  box-shadow: var(--shadow);
  text-align: center;
}

.mini-stat strong {
  display: block;
  color: var(--green-800);
  font-size: 1.8rem;
}

.mini-stat span {
  color: var(--ink);
  font-weight: 800;
}

.section-copy h2,
.section-heading h2 {
  margin-bottom: 24px;
}

.section-copy p + p {
  margin-top: 16px;
}

.section-copy > p:not(.eyebrow),
.section-heading > p {
  font-size: 1.02rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.link-arrow {
  color: var(--green-800);
  font-weight: 900;
}

.link-arrow::after {
  content: " →";
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 72px;
  align-items: center;
}

.about-visual-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 230, 40, 0.18), transparent 24%),
    linear-gradient(135deg, var(--paper-2), var(--paper));
  box-shadow: var(--shadow);
}

.about-visual-card::before {
  content: "";
  position: absolute;
  left: -16%;
  bottom: -24%;
  z-index: 1;
  width: 58%;
  height: 44%;
  border-top-right-radius: 360px;
  background: rgba(200, 230, 40, 0.22);
}

.about-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 61, 51, 0.12), rgba(4, 61, 51, 0.02)),
    radial-gradient(circle at 24px 24px, rgba(200, 230, 40, 0.18) 2px, transparent 2px) 0 0 / 54px 54px;
}

.about-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-floating-card {
  position: absolute;
  z-index: 2;
  width: 176px;
  padding: 16px;
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(4, 61, 51, 0.16);
  backdrop-filter: blur(10px);
}

.about-floating-card-one {
  left: 36px;
  top: 34px;
}

.about-floating-card-two {
  right: 34px;
  top: 180px;
}

.about-floating-card-three {
  left: 34px;
  bottom: 34px;
}

.about-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: var(--green-100);
  color: var(--green-800);
}

.about-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.about-floating-card strong,
.about-floating-card small {
  display: block;
}

.about-floating-card strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.2;
}

.about-floating-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.about-copy {
  max-width: 560px;
}

.about-copy h2 {
  max-width: 520px;
}

.about-points {
  display: grid;
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.about-points li > span {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  box-shadow: inset 0 0 0 1px rgba(15, 81, 50, 0.12);
}

.about-points li > span::before {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--green-800);
  border-bottom: 3px solid var(--green-800);
  transform: rotate(-45deg) translateY(-1px);
}

.about-points h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.02rem;
}

.about-points p {
  font-size: 0.96rem;
}

.soft-band {
  background: var(--paper-2);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.icon-card,
.benefit-card,
.program-card,
.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(4, 61, 51, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.icon-card:hover,
.benefit-card:hover,
.program-card:hover,
.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 163, 92, 0.35);
  box-shadow: 0 22px 48px rgba(4, 61, 51, 0.14);
}

.icon-card {
  padding: 28px;
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
}

.icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 18px;
}

.check-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(4, 61, 51, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.check-card:hover {
  transform: translateY(-5px);
  border-color: rgba(44, 163, 92, 0.34);
  box-shadow: 0 22px 48px rgba(4, 61, 51, 0.14);
}

.check-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-100);
  box-shadow: inset 0 0 0 1px rgba(15, 81, 50, 0.12);
}

.check-icon::before {
  content: "";
  width: 15px;
  height: 9px;
  border-left: 3px solid var(--green-800);
  border-bottom: 3px solid var(--green-800);
  transform: rotate(-45deg) translateY(-1px);
}

.check-card h3 {
  margin-bottom: 8px;
}

.check-card p {
  font-size: 0.96rem;
}

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

.learning-section .check-card {
  min-height: 160px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(4, 61, 51, 0.2);
}

.learning-section .check-card:hover {
  background: var(--white);
}

.learning-section .check-icon {
  background: var(--lime);
  box-shadow: 0 10px 22px rgba(200, 230, 40, 0.18);
}

.icon-card h3,
.benefit-card h3,
.module-card h3,
.step-item h3,
.program-card h3 {
  margin-bottom: 10px;
}

.benefit-section {
  background: var(--paper);
  overflow: hidden;
}

.benefit-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.benefit-card {
  --benefit-tone: var(--green-100);
  --benefit-accent: var(--green-700);
  --benefit-pill: var(--paper-2);
  min-height: 358px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.benefit-card-mint {
  --benefit-tone: #dff4e7;
  --benefit-accent: var(--green-700);
  --benefit-pill: #eaf8ee;
}

.benefit-card-lime {
  --benefit-tone: #e9f8b6;
  --benefit-accent: var(--green-800);
  --benefit-pill: #f1fbd3;
}

.benefit-card-cream {
  --benefit-tone: #fbf7d9;
  --benefit-accent: var(--green-700);
  --benefit-pill: #fff7d9;
}

.benefit-card-sage {
  --benefit-tone: #e5f3ed;
  --benefit-accent: var(--green-600);
  --benefit-pill: #edf8f2;
}

.benefit-card-leaf {
  --benefit-tone: #cfeecf;
  --benefit-accent: var(--green-800);
  --benefit-pill: #e7f8e7;
}

.benefit-card-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 142px;
  padding: 30px 24px 42px;
  background:
    radial-gradient(circle at 82% 96%, rgba(255, 255, 255, 0.26) 0 42px, transparent 43px),
    var(--benefit-tone);
}

.benefit-card-visual::before {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -54px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(15, 81, 50, 0.09);
  border-radius: 50%;
}

.benefit-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--benefit-accent);
  box-shadow: inset 0 0 0 1px rgba(15, 81, 50, 0.08), 0 14px 28px rgba(4, 61, 51, 0.08);
}

.benefit-icon i {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.benefit-card-body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 24px;
  background: var(--white);
  border-top: 1px solid rgba(15, 81, 50, 0.08);
}

.benefit-plus {
  position: absolute;
  top: 25px;
  right: 24px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
}

.benefit-card h3 {
  max-width: 230px;
  padding-right: 28px;
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.benefit-card p {
  font-size: 0.96rem;
}

.benefit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: fit-content;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--benefit-pill);
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(4, 61, 51, 0.08);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.benefit-link:hover {
  transform: translateY(-2px);
  background: var(--lime);
  color: var(--green-900);
}

@media (min-width: 1081px) {
  .benefit-layout {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .benefit-card {
    grid-column: span 2;
  }

  .benefit-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .benefit-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.learning-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 230, 40, 0.12), transparent 22%),
    linear-gradient(135deg, #043d33 0%, #084634 52%, #0f5132 100%);
}

.pattern-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.58;
  background:
    radial-gradient(circle at 12px 12px, rgba(200, 230, 40, 0.12) 2px, transparent 2px) 0 0 / 54px 54px,
    linear-gradient(135deg, rgba(4, 61, 51, 0.94), rgba(15, 81, 50, 0.64));
}

.pattern-bg::before,
.pattern-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.pattern-bg::before {
  left: -10%;
  top: auto;
  width: 54%;
  height: 44%;
  background: rgba(102, 194, 130, 0.16);
  border-top-right-radius: 420px;
}

.pattern-bg::after {
  left: auto;
  width: 42%;
  background:
    linear-gradient(180deg, rgba(15, 81, 50, 0), rgba(200, 230, 40, 0.08)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px);
  opacity: 0.56;
}

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

.learning-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.learning-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  overflow: hidden;
  padding: 34px 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(4, 61, 51, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.learning-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 62px rgba(4, 61, 51, 0.24);
}

.learning-card::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -62px;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  border: 22px solid rgba(255, 255, 255, 0.16);
}

.learning-card-white {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.learning-card-lime {
  background: var(--lime);
  color: var(--green-900);
}

.learning-card-dark {
  background: var(--green-900);
  color: var(--white);
}

.learning-icon {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 34px;
  color: var(--green-600);
}

.learning-card-lime .learning-icon,
.learning-card-lime .learning-cta {
  color: var(--green-900);
}

.learning-card-dark .learning-icon {
  color: var(--lime);
}

.learning-icon i {
  display: block;
  font-size: 44px;
  line-height: 1;
}

.learning-card h3,
.learning-card p,
.learning-card a {
  position: relative;
  z-index: 1;
}

.learning-card h3 {
  max-width: 260px;
  margin-bottom: 18px;
  color: currentColor;
  font-size: 1.45rem;
  line-height: 1.12;
}

.learning-card p {
  color: rgba(23, 53, 46, 0.72);
  font-size: 0.98rem;
  margin-bottom: 28px;
}

.learning-card-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.learning-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--white);
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(4, 61, 51, 0.14);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.learning-cta::after {
  content: "›";
  margin-left: 8px;
  font-size: 1.2rem;
  line-height: 1;
}

.learning-card-white .learning-cta {
  background: var(--paper);
}

.learning-card-lime .learning-cta,
.learning-card-dark .learning-cta {
  background: var(--white);
}

.learning-cta:hover {
  transform: translateY(-2px);
  background: var(--green-900);
  color: var(--white);
}

.learning-card-dark .learning-cta:hover {
  background: var(--lime);
  color: var(--green-900);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.module-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(4, 61, 51, 0.2);
  transition: transform 0.28s ease, background 0.28s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  background: var(--white);
}

.module-card strong {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.45rem;
}

.module-card-wide {
  grid-column: 1 / -1;
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 82%, rgba(200, 230, 40, 0.16), transparent 9%),
    radial-gradient(circle at 92% 22%, rgba(102, 194, 130, 0.15), transparent 12%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}

.program-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding-top: 88px;
}

.program-flow::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 28px;
  height: 2px;
  z-index: 0;
  background-image: repeating-linear-gradient(90deg, rgba(23, 53, 46, 0.42) 0 10px, transparent 10px 22px);
}

.program-flow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 19px;
  z-index: 1;
  height: 18px;
  background:
    radial-gradient(circle at 9px 9px, var(--white) 0 4px, var(--green-900) 5px 9px, transparent 10px),
    radial-gradient(circle at calc(100% - 9px) 9px, var(--white) 0 4px, var(--green-900) 5px 9px, transparent 10px);
  pointer-events: none;
}

.flow-card {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 34px 22px 28px;
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(4, 61, 51, 0.1);
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.flow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 163, 92, 0.34);
  box-shadow: 0 26px 56px rgba(4, 61, 51, 0.16);
}

.flow-card strong {
  position: absolute;
  left: 50%;
  top: -88px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--green-900);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  transform: translateX(-50%);
  box-shadow: 0 12px 26px rgba(4, 61, 51, 0.2);
}

.flow-card.is-active strong {
  background: var(--green-600);
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  color: var(--green-600);
}

.flow-icon i {
  display: block;
  color: currentColor;
  font-size: 42px;
  line-height: 1;
}

.flow-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.flow-card p {
  font-size: 0.94rem;
}

.timeline-section {
  background: var(--paper);
}

.mentors-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 40%, rgba(200, 230, 40, 0.16), transparent 18%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mentor-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(4, 61, 51, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mentor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(4, 61, 51, 0.16);
}

.mentor-portrait {
  position: relative;
  display: flex;
  height: 332px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--mentor-sky);
}

.mentor-card:nth-child(2) .mentor-portrait {
  background: var(--mentor-lime);
}

.mentor-card:nth-child(3) .mentor-portrait {
  background: var(--mentor-mint);
}

.mentor-card:nth-child(4) .mentor-portrait {
  background: var(--mentor-warm);
}

.mentor-portrait::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -32px;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(0, 57, 28, 0.14);
  border-radius: 50%;
}

.mentor-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.mentor-info {
  position: relative;
  z-index: 2;
  min-height: 112px;
  margin: -1px 12px 12px;
  padding: 17px 16px 18px;
  border: 1px solid rgba(15, 81, 50, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(4, 61, 51, 0.08);
}

.mentor-info h3 {
  color: var(--green-900);
  font-size: 1.15rem;
  line-height: 1.2;
}

.mentor-info p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.timeline-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline-table table {
  width: 100%;
  border-collapse: collapse;
}

.timeline-table th,
.timeline-table td {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.timeline-table th {
  background: var(--green-900);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-table td:first-child {
  width: 38%;
  color: var(--green-800);
  font-weight: 900;
}

.timeline-table tr:last-child td {
  border-bottom: 0;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.status-label {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card p {
  margin-top: 6px;
}

.progress {
  height: 12px;
  overflow: hidden;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(15, 81, 50, 0.12);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-700), var(--lime));
}

.program-card a {
  margin-top: 24px;
  color: var(--green-800);
  font-weight: 900;
  text-transform: uppercase;
}

.program-card a::after {
  content: " →";
}

.organizer-section {
  background: var(--paper-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.proof-card {
  min-height: 156px;
  padding: 28px;
}

.proof-card strong {
  display: block;
  color: var(--green-700);
  font-size: 2.6rem;
  line-height: 1;
}

.proof-card span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 61, 51, 0.06);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green-700);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 24px 24px;
}

.closing-cta {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background:
    radial-gradient(circle at 12px 12px, var(--lime) 2px, transparent 2px) 0 0 / 34px 34px,
    linear-gradient(90deg, rgba(4, 61, 51, 0.96), rgba(15, 81, 50, 0.7));
}

.cta-grid {
  position: relative;
  z-index: 1;
}

.cta-grid .btn {
  justify-self: end;
}

.site-footer {
  background:
    linear-gradient(rgba(4, 61, 51, 0.9), rgba(4, 61, 51, 0.96)),
    url("assets/about-visual.jpg") center / cover no-repeat,
    radial-gradient(circle at 12px 12px, rgba(200, 230, 40, 0.24) 2px, transparent 2px) 0 0 / 36px 36px,
    linear-gradient(135deg, var(--green-900), #062b26);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0;
}

.footer-logo {
  width: 220px;
  margin-bottom: 20px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-bottom {
  padding: 20px 24px;
  background: var(--green-700);
  text-align: center;
}

.footer-bottom p {
  color: var(--white);
}

.footer-bottom a {
  display: inline;
  margin-top: 0;
  color: var(--white);
  text-decoration: underline;
}

.hero {
  min-height: 790px;
  padding: 104px 0 96px;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 23%, rgba(200, 230, 40, 0.12), transparent 22%),
    linear-gradient(135deg, #043d33 0%, #084634 52%, #0f5132 100%);
}

.hero::after {
  right: -9%;
  bottom: -26%;
  width: 44%;
  height: 34%;
  opacity: 0.14;
  border-top-left-radius: 420px;
}

.hero-bg {
  overflow: hidden;
  background:
    radial-gradient(circle at 12px 12px, rgba(200, 230, 40, 0.12) 2px, transparent 2px) 0 0 / 54px 54px,
    linear-gradient(135deg, rgba(4, 61, 51, 0.94), rgba(15, 81, 50, 0.64));
  opacity: 0.58;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-bg::before {
  left: -10%;
  top: auto;
  width: 54%;
  height: 44%;
  background: rgba(102, 194, 130, 0.16);
  border-top-right-radius: 420px;
}

.hero-bg::after {
  left: auto;
  width: 42%;
  background:
    linear-gradient(180deg, rgba(15, 81, 50, 0), rgba(200, 230, 40, 0.08)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px);
  opacity: 0.56;
}

.hero-grid {
  position: relative;
  display: block;
}

.hero > .container {
  width: min(100% - 128px, var(--hero-container));
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding-top: 10px;
}

.hero-visual {
  position: absolute;
  right: clamp(-42px, calc((100vw - var(--hero-container)) / 2 + 32px), 108px);
  bottom: -156px;
  z-index: 2;
  width: min(54vw, 960px);
  min-width: 660px;
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-mobile-visual {
  display: none;
}

.hero-visual.reveal.is-visible {
  opacity: 1;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(3.2rem, 3.8vw, 4.55rem);
  letter-spacing: 0;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}

.hero .eyebrow {
  margin-bottom: 28px;
  background: rgba(4, 61, 51, 0.5);
}

.hero-lede {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.hero-social {
  position: absolute;
  right: max(64px, calc((100vw - var(--hero-container)) / 2));
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.hero-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-social a:hover {
  transform: translateX(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.trust-strip {
  padding: 74px 0 88px;
}

.trust-note {
  max-width: 680px;
  margin: 0 auto 46px;
  color: rgba(23, 53, 46, 0.48);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.trust-grid {
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 32px;
  text-align: center;
}

.trust-grid > div {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.trust-kicker {
  margin-bottom: 2px;
  color: var(--green-400);
  letter-spacing: 0.03em;
}

.trust-grid strong {
  color: var(--green-900);
  font-size: 1.08rem;
}

.about-action-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 520px;
  margin-top: 32px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--green-700);
}

.about-action-card a {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-action-card a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.eligibility-grid {
  position: relative;
}

.eligibility-grid::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 31px;
  height: 2px;
  background: rgba(15, 81, 50, 0.12);
}

.eligibility-grid .icon-card {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.eligibility-grid .icon-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.eligibility-grid .icon-wrap {
  margin-inline: auto;
  width: 76px;
  height: 76px;
  border: 8px solid var(--paper-2);
  background: var(--green-100);
}

.module-grid {
  gap: 18px 36px;
}

.module-card {
  min-height: 142px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.module-card h3,
.module-card p {
  color: var(--white);
}

.module-card strong {
  background: var(--green-700);
  border: 3px solid var(--green-100);
}

.module-card:nth-child(odd) {
  grid-template-columns: 1fr 78px;
  border-radius: 30px 300px 300px 30px;
  text-align: right;
}

.module-card:nth-child(odd) strong {
  order: 2;
}

.module-card:nth-child(even) {
  border-radius: 300px 30px 30px 300px;
}

.module-card-wide {
  grid-column: 1 / -1;
  width: min(700px, 100%);
  justify-self: center;
  border-radius: 999px;
  text-align: left;
}

.program-card {
  min-height: 720px;
  padding: 34px;
}

.program-card-visual {
  position: relative;
  min-height: 260px;
  margin: -6px -6px 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(15, 81, 50, 0.66), rgba(15, 81, 50, 0.2)),
    url("assets/about-visual.jpg") center / cover no-repeat;
  overflow: hidden;
}

.program-card:nth-child(2) .program-card-visual {
  background:
    linear-gradient(rgba(15, 81, 50, 0.58), rgba(15, 81, 50, 0.14)),
    url("assets/hero-migranpreneur.jpg") center / cover no-repeat;
}

.program-card:nth-child(3) .program-card-visual {
  background:
    radial-gradient(circle at 12px 12px, rgba(200, 230, 40, 0.26) 2px, transparent 2px) 0 0 / 34px 34px,
    linear-gradient(135deg, var(--green-900), var(--green-700));
}

.status-ribbon {
  position: absolute;
  right: -38px;
  top: 30px;
  width: 160px;
  padding: 9px 0;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.program-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0 22px;
}

.program-meta div,
.program-meta dt,
.program-meta dd {
  margin: 0;
}

.program-meta dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.program-meta dd {
  color: var(--ink);
  font-weight: 900;
}

.purpose-section {
  background: var(--paper-2);
  padding: 102px 0;
}

.purpose-panel {
  width: min(960px, 100%);
  margin-inline: auto;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--green-100);
  box-shadow: inset 0 0 0 1px rgba(15, 81, 50, 0.12);
}

.purpose-panel h2,
.purpose-panel p {
  max-width: 760px;
}

.purpose-panel::after {
  content: "";
  display: block;
  margin-top: 28px;
  border: 1px dashed var(--green-700);
}

.purpose-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.purpose-points span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-900);
  font-weight: 900;
  text-align: center;
}

.organizer-panel {
  width: min(1040px, 100%);
  text-align: center;
}

.organizer-panel h2 {
  max-width: 760px;
  margin-inline: auto;
}

.organizer-panel::after {
  display: none;
}

.organizer-logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  margin-top: 36px;
  padding: 22px;
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 36px rgba(4, 61, 51, 0.08);
}

.organizer-logo-item {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px 20px;
  overflow: hidden;
}

.organizer-logo-item img {
  width: auto;
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
}

.logo-danantara img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(300px, 100%);
  max-width: none;
  max-height: none;
  clip-path: inset(38% 7% 38% 7%);
  transform: translate(-50%, -50%);
}

.logo-pegadaian img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(268px, 100%);
  max-width: none;
  max-height: none;
  clip-path: inset(38% 0 37% 0);
  transform: translate(-50%, calc(-50% - 2px));
}

.logo-pegadaian-peduli img {
  max-height: 78px;
}

.organized-by {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 34px;
}

.organized-by span {
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.organizer-logo-yea {
  width: min(360px, 100%);
  min-height: 112px;
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(4, 61, 51, 0.08);
  overflow: hidden;
}

.organizer-logo-yea img {
  max-height: 78px;
}

.organizer-note {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--green-900);
  font-size: 1.12rem;
  font-weight: 900;
  text-align: center;
}

.counter-number {
  font-variant-numeric: tabular-nums;
}

.team-section {
  background: var(--paper-2);
}

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

.team-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(4, 61, 51, 0.15);
}

.team-card > div {
  flex: 1;
  min-height: 250px;
  margin: -24px -24px 30px;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.9)),
    url("assets/hero-migranpreneur.jpg") center top / cover no-repeat;
}

.team-card:nth-child(even) > div {
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.9)),
    url("assets/about-visual.jpg") center top / cover no-repeat;
}

.team-card h3 {
  display: grid;
  place-items: center;
  min-height: 64px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--green-700);
  color: var(--white);
  text-align: center;
}

.team-card span {
  display: block;
  margin-top: 8px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.donation-section {
  background: var(--paper);
}

.donation-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.75rem;
}

.donation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-900);
  font-weight: 900;
  text-transform: uppercase;
}

.play-link::before {
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-700);
  clip-path: polygon(36% 25%, 36% 75%, 78% 50%);
}

.donation-visual {
  position: relative;
  min-height: 560px;
}

.photo-card-large {
  position: absolute;
  right: 0;
  top: 0;
  width: 86%;
  height: 340px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card-large img,
.floating-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  height: 210px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-section {
  background: var(--paper);
}

.proof-visual {
  min-height: 520px;
}

.proof-stat {
  left: 33%;
  bottom: 140px;
}

blockquote {
  margin: 30px 0;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink);
  font-size: 1.15rem;
  font-style: italic;
}

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

.article-section {
  background: var(--paper-2);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.article-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 44px 0 0;
}

.article-card time {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.article-card span {
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 900;
}

.article-card h3 {
  margin: 12px 0 12px;
  font-size: 1.35rem;
}

.article-card a {
  width: fit-content;
  margin-top: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--green-700);
  border-radius: 999px;
  padding: 0 26px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
    padding-inline: 24px;
  }

  .hero {
    min-height: 720px;
    padding: 96px 0 96px;
  }

  .hero-grid {
    display: block;
  }

  .hero-visual {
    right: -70px;
    bottom: -130px;
    width: min(58vw, 860px);
    min-width: 560px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(3rem, 5.6vw, 4.35rem);
  }

  .about-grid {
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  }

  .about-visual-card {
    min-height: 500px;
  }

  .about-floating-card {
    width: 164px;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.78rem;
  }

  .hero-grid,
  .split-grid,
  .process-grid,
  .organizer-grid,
  .faq-grid,
  .cta-grid {
    gap: 44px;
  }

  .icon-grid,
  .benefit-layout,
  .team-grid,
  .mentor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .program-flow::before,
  .program-flow::after {
    display: none;
  }

  .flow-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    min-height: auto;
    padding: 24px;
    text-align: left;
  }

  .flow-card strong {
    position: static;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    transform: none;
  }

  .flow-icon {
    grid-column: 1;
    grid-row: 2;
    width: 54px;
    height: 44px;
    margin: 0;
  }

  .flow-icon i {
    font-size: 34px;
  }

  .flow-card h3,
  .flow-card p {
    grid-column: 2;
  }

  .benefit-card {
    min-height: 340px;
  }

  .mentor-grid {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    min-height: var(--header-height);
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 148px;
  }

  .brand img {
    width: 148px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-cta {
    justify-self: end;
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.74rem;
  }

  .main-nav {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 12px 24px 24px;
    background: var(--green-900);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-header.nav-open .main-nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 86px;
  }

  .hero > .container {
    width: min(100% - 32px, var(--container));
  }

  .hero-bg::before {
    left: -42%;
    width: 108%;
    height: 34%;
    opacity: 0.8;
  }

  .hero-bg::after {
    width: 52%;
    background:
      linear-gradient(180deg, rgba(15, 81, 50, 0), rgba(200, 230, 40, 0.07)),
      repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 16px);
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.75rem, 8vw, 3.55rem);
  }

  .hero-grid,
  .split-grid,
  .process-grid,
  .organizer-grid,
  .faq-grid,
  .cta-grid,
  .donation-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: block;
    right: -260px;
    bottom: -110px;
    width: 560px;
    min-width: 0;
    opacity: 0.22;
  }

  .hero-visual.reveal.is-visible {
    opacity: 0.22;
  }

  .hero-social {
    display: none;
  }

  .hero-copy {
    padding-top: 0;
  }

  .process-section {
    scroll-margin-top: calc(var(--header-height) + 30px);
    padding-top: 104px;
  }

  .process-section .section-heading {
    margin-bottom: 46px;
  }

  .process-section .section-heading h2 {
    max-width: 620px;
    margin-inline: auto;
  }

  .program-flow {
    gap: 22px;
  }

  .flow-card {
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 18px 22px;
    padding: 30px 26px;
  }

  .flow-card strong {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .flow-icon {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    align-self: center;
    width: 64px;
    height: 54px;
  }

  .flow-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-bottom: 0;
    font-size: 1.16rem;
  }

  .flow-card p {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    margin: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual-card,
  .about-copy {
    max-width: 680px;
  }

  .about-visual-card {
    min-height: 520px;
  }

  .hero-panel {
    min-height: 500px;
    border-radius: var(--radius);
  }

  .trust-grid,
  .program-cards,
  .footer-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .purpose-points {
    grid-template-columns: 1fr;
  }

  .donation-visual {
    min-height: 480px;
  }

  .visual-stack {
    min-height: 470px;
  }

  .photo-main {
    height: 260px;
  }

  .photo-accent {
    height: 260px;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  .learning-check-grid {
    grid-template-columns: 1fr;
  }

  .learning-card-grid {
    grid-template-columns: 1fr;
  }

  .program-flow {
    grid-template-columns: 1fr;
  }

  .module-card-wide {
    grid-column: auto;
  }

  .cta-grid .btn {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1rem;
  }

  .section {
    padding: 78px 0;
  }

  .process-section {
    padding-top: 108px;
    scroll-margin-top: calc(var(--header-height) + 28px);
  }

  .process-section .section-heading {
    margin-bottom: 42px;
  }

  .flow-card {
    grid-template-columns: 74px 1fr;
    gap: 18px 20px;
    padding: 32px 22px;
  }

  .mentor-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand {
    min-width: 126px;
  }

  .brand img {
    width: 126px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-cta {
    display: inline-flex;
    justify-self: center;
    min-height: 40px;
    max-width: 150px;
    padding-inline: 12px;
    font-size: 0.68rem;
  }

  .hero {
    padding: 54px 0 68px;
  }

  .hero-visual {
    display: none;
  }

  .hero-visual.reveal.is-visible {
    opacity: 0;
  }

  .hero::after {
    right: -42%;
    bottom: -18%;
    width: 108%;
    height: 26%;
    opacity: 0.12;
  }

  .hero-bg::before {
    background-position: 60% center;
    opacity: 0.28;
  }

  .hero h1 {
    font-size: 2.28rem;
    line-height: 1.15;
  }

  .hero-lede {
    font-size: 0.96rem;
  }

  .hero-mobile-visual {
    position: relative;
    display: block;
    width: calc(100% + 32px);
    height: 348px;
    margin: 16px -16px 18px;
    overflow: hidden;
    transform: none;
    pointer-events: none;
  }

  .hero-mobile-visual img {
    position: absolute;
    right: -52px;
    bottom: -72px;
    width: min(480px, 123vw);
    max-width: none;
    height: auto;
    filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.2));
  }

  .hero-actions {
    gap: 12px;
    margin-top: 0;
  }

  .registration-countdown {
    width: 100%;
    max-width: none;
    order: -1;
    align-items: center;
    text-align: center;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .info-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .info-bar span {
    justify-content: center;
  }

  .hero-panel {
    min-height: 390px;
  }

  .hero-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .about-grid {
    gap: 36px;
  }

  .about-visual-card {
    min-height: 410px;
  }

  .about-floating-card {
    width: 142px;
    padding: 12px;
  }

  .about-floating-card-one {
    left: 14px;
    top: 14px;
  }

  .about-floating-card-two {
    right: 14px;
    top: 132px;
  }

  .about-floating-card-three {
    left: 14px;
    bottom: 14px;
  }

  .about-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .about-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .about-floating-card strong {
    font-size: 0.8rem;
  }

  .about-floating-card small {
    display: none;
  }

  .about-points li {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .about-points li > span {
    width: 36px;
    height: 36px;
  }

  .trust-grid,
  .icon-grid,
  .check-card-grid,
  .benefit-layout,
  .program-cards,
  .proof-grid,
  .footer-grid,
  .team-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .check-card {
    min-height: auto;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .learning-card {
    min-height: 300px;
    padding: 28px 24px;
  }

  .benefit-card {
    min-height: 326px;
  }

  .benefit-card-visual {
    min-height: 122px;
    padding: 24px 20px 34px;
  }

  .benefit-icon {
    width: 64px;
    height: 64px;
  }

  .benefit-icon i {
    font-size: 36px;
  }

  .benefit-card-body {
    padding: 26px 22px 22px;
  }

  .benefit-plus {
    top: 22px;
    right: 22px;
  }

  .benefit-card h3 {
    max-width: 260px;
    font-size: 1.16rem;
  }

  .learning-card h3 {
    max-width: none;
    font-size: 1.25rem;
  }

  .learning-icon {
    margin-bottom: 26px;
  }

  .learning-cta {
    width: auto;
  }

  .check-icon {
    width: 42px;
    height: 42px;
  }

  .visual-stack {
    min-height: 610px;
  }

  .photo-card {
    position: relative;
    width: 100%;
    height: 260px;
  }

  .photo-main,
  .photo-accent {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 18px;
  }

  .mini-stat {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .module-card,
  .step-item {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
    text-align: left;
  }

  .module-card:nth-child(odd),
  .module-card:nth-child(even),
  .module-card-wide {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
    text-align: left;
  }

  .module-card:nth-child(odd) strong {
    order: 0;
  }

  .module-card strong,
  .step-item strong {
    width: 58px;
    height: 58px;
    font-size: 1.25rem;
  }

  .timeline-table {
    overflow-x: auto;
  }

  .timeline-table table {
    min-width: 620px;
  }

  .timeline-table th,
  .timeline-table td {
    padding: 18px;
  }

  .program-card {
    min-height: 600px;
  }

  .program-card-visual {
    min-height: 210px;
  }

  .program-meta {
    grid-template-columns: 1fr;
  }

  .purpose-panel {
    padding: 28px;
  }

  .organizer-logo-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
    padding: 14px;
  }

  .organizer-logo-item {
    min-height: 82px;
    padding: 14px 16px;
  }

  .organizer-logo-item img {
    max-height: 58px;
  }

  .logo-danantara img {
    width: min(260px, 100%);
    max-height: none;
  }

  .logo-pegadaian img {
    width: min(240px, 100%);
    max-height: none;
  }

  .logo-pegadaian-peduli img {
    max-height: 72px;
  }

  .organized-by {
    margin-top: 28px;
  }

  .organizer-logo-yea {
    min-height: 96px;
  }

  .organizer-logo-yea img {
    max-height: 70px;
  }

  .organizer-note {
    font-size: 1rem;
  }

  .team-card {
    min-height: 390px;
  }

  .photo-card-large,
  .floating-photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 260px;
    margin-bottom: 18px;
  }

  .donation-visual,
  .proof-visual {
    min-height: auto;
  }

  blockquote {
    padding: 22px;
    font-size: 1rem;
  }

  .footer-grid {
    gap: 28px;
    padding: 54px 0;
  }
}
