:root {
  --green: #00a55d;
  --green-600: #008c45;
  --green-700: #00733a;
  --green-050: #e9f7ef;
  --green-100: #d4f0e0;
  --ink: #132430;
  --ink-800: #1d3442;
  --ink-600: #3d5665;
  --slate: #5b7180;
  --mist: #f4f7f6;
  --paper: #ffffff;
  --amber: #f6a623;
  --amber-050: #eef6fc;
  --line: #e3eae7;
  --shadow-sm: 0 1px 3px rgba(19, 36, 48, .08);
  --shadow-md: 0 8px 30px rgba(19, 36, 48, .10);
  --shadow-lg: 0 20px 60px rgba(19, 36, 48, .16);
  --radius: 16px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Lora", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overflow-x: hidden
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

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

a {
  color: var(--green-600);
  text-decoration: none
}

button {
  font-family: inherit;
  cursor: pointer
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto
}

section {
  padding: 36px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 14px
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
  border-radius: 2px
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  letter-spacing: -.015em
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px
}

.section-lead {
  max-width:100%;
  color: var(--ink-600);
  font-size: 1.05rem
}

.center {
  text-align: center
}

.center .section-lead {
  margin-inline: auto
}

/* ---------- top bar ---------- */
.topbar {
  background: var(--ink);
  color: #cfe0da;
  font-size: .82rem;
  padding: 8px 0
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.topbar a {
  color: #fff;
  font-weight: 600
}

.topbar .tb-right {
  display: flex;
  gap: 22px
}

.topbar svg {
  vertical-align: -2px;
  margin-right: 6px
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line)
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink)
}

.brand-logo {
  height: 130px;
  width: auto;
  display: block
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 2px var(--green)
}

.brand-mark span {
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .02em
}

.brand-text {
  line-height: 1.1
}

.brand-text .l1 {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .02em
}

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

.brand-text .l2 {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .34em;
  color: var(--slate);
  text-transform: uppercase
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none
}

.nav-links a {
  color: var(--ink-600);
  font-weight: 600;
  font-size: .92rem;
  position: relative;
  padding: 6px 0
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width .25s
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-links a.current {
  color: var(--ink)
}

.nav-links a.current::after {
  width: 100%
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 12px;
  padding: 13px 26px;
  border: 2px solid transparent;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  text-align: center
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-.25px);
  box-shadow: 0 10px 24px rgba(0, 166, 80, 0.166)
}

.btn-ghost {
  background: transparent;
  color: #00a55d;
  border-color: #00a55d;
}

.btn-ghost:hover {
  border-color: #00693b;
  background: 00693b;
  color:rgb(0, 55, 28);
}

.btn-outline {
  border:2px solid #00A55D;
  color: #00A55D;
  border-color: var(--green)
}

.btn-outline:hover {
  background: var(--green-050);
  color: var(--green-700)
}

.btn-sm {
  padding: 10px 20px;
  font-size: .88rem
}
.btn-primary-new {
  background: #066263;
  color: #fff;
}
.btn-primary-new:hover {
  background: #045455;
  color: #c2c3c3;
}
.hamburger {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: .25s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}

/* ---------- hero slider ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(10, 12, 12, 0.0), rgba(10, 12, 12, 0.018)),
    url('Hero_Header.png') center center / cover no-repeat;
  overflow: hidden;
  background-attachment: scroll;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 12, 0.08);
  pointer-events: none;
}

.hero-waves {
  position: absolute;
  right: -140px;
  bottom: -40px;
  width: 640px;
  opacity: .12;
  pointer-events: none
}
.slides {
  position: relative;
  height: 500px; /* same height for both slides */
}

.slide {
  position: absolute;
  inset: 0;

  width: 100%;
  padding: 20px 20px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.slide.active {
  /* IMPORTANT: don't change position */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  height:80%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(5, 98, 103, 0.82);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 18px
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(246, 166, 35, .25);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(246, 166, 35, .25)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(246, 166, 35, .08)
  }
}

.batch-note {
  display: block;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: .68rem;
  margin-bottom: 14px
}

.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: .98;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -0.05em;
}

.hero h1 .hl {
  color: #22d17d
}

.hero p.sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  max-width: 100%;
  margin-bottom: 26px
}

.hero-facts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px
}

.hero-facts .hf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .84rem;
  font-weight: 700;
  color: #fff
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg)
}

.hero-card .hc-tag {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: #fefefe;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px
}

.hero-card h3 {
  font-size: 1.28rem;
  margin-bottom: 6px
}

.hero-card .hc-sub {
  color: #03301a;
  font-size: .9rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.countdown {
  display: grid;
  color: #03301a;

  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px
}

.cd-cell {
  border: 1px solid #006539;
  border-radius: 12px;
  
  color:#03301a;
  text-align: center;
  padding: 12px 4px
}

.cd-cell b {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums
}

.cd-cell small {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 700
}

.hero-card ul {
  list-style: none;
  margin-bottom: 22px
}

.hero-card li {
  display: flex;
  gap: 10px;
  font-size: .92rem;
  color: #003218;
  padding: 5px 0;
  font-weight:500px;
}

.hero-card li svg {
  flex-shrink: 0;
  margin-top: 4px
}

.hero-card li.hi-cert {
  border: 1px solid #066263;
  border-radius: 10px;
  padding: 9px 12px;
  margin-top: 6px;
  color: #066263;
  font-weight: 700
}

.hero-card .btn {
  width: 100%
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #07172a;
  display: grid;
  place-items: center;
  transition: .2s
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, .22)
}

.slider-arrow.prev {
  left: 14px
}

.slider-arrow.next {
  right: 14px
}

.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10;
  display: none;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(128, 155, 135, 0.415);
  transition: .25s;
  padding: 0
}

.slider-dots button.active {
  background: var(--amber);
  width: 26px
}

/* ---------- trainings toggle ---------- */
.prog-toggle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  margin: 16px auto 16px;
  box-shadow: var(--shadow-sm)
}

.prog-toggle .pt {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 800;
  font-size: .95rem;
  color: var(--ink-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
  white-space: nowrap
}

.prog-toggle .pt.active {
  background: #066263;
  color: #fff;
  box-shadow: var(--shadow-sm)
}

.prog-view {
  display: none;
  animation: fadeUp .35s ease
}

.prog-view.active {
  display: block
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ---------- SAP flagship card ---------- */
.prog-flag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr
}

.prog-main {
  padding: 34px 38px
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px
}

.pill {
  font-size: .75rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 14px;
  letter-spacing: .04em
}

.pill.green {
  background: var(--green-050);
  color: var(--green-700)
}

.pill.amber {
  background:#d1a05268 ;
  color: #3b2400
}

.pill.ink {
  background: #eef2f4;
  color: var(--ink-600)
}

.prog-main h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.prog-main .start_end {
  color: var(--slate);
  font-weight: 600;
  font-size: 1.12rem;
  padding:4px 0px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.about-course {
  background: var(--green-050);
  border: 1px solid var(--green-100);
  border-radius: 14px;
  padding: 15px 18px;
  margin-bottom: 16px
}

.about-course h4 {
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 6px
}

.about-course p {
  color: var(--ink-800);
  font-size: .88rem
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px
}

.fact {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--mist);
  border-radius: 12px;
  padding: 11px 14px
}

.fact svg {
  flex-shrink: 0;
  color: var(--green-600);
  margin-top: 2px
}

.fact b {
  display: block;
  font-size: .87rem
}

.fact small {
  color: var(--slate);
  font-size: .76rem;
  font-weight: 600
}

.prog-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4px
}

.prog-side {
  background: #f2fff9;
  color: #07172a;
  padding: 34px 36px;
  display: flex;
  flex-direction: column
}

.prog-side h4 {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #00671C;
  margin-bottom: 18px
}

.prog-side ul {
  list-style: none;
  margin-bottom: 28px
}

.prog-side li {
  display: flex;
  gap: 12px;
  padding: 7px 0;
  font-size: .93rem;
  color: var(--ink-600)
}

.prog-side li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: #00671C
}

.prog-side li.hi-cert {
  background: rgba(246, 166, 35, .14);
  border: 1px solid rgba(246, 166, 35, .4);
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 6px;
  color: #a56a0b;
  font-weight: 700
}

.prog-poster {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  margin-top: 28px;
  margin-bottom: 28px;
  display: block
}

.scholar-box {
  background: rgba(246, 166, 35, .14);
  border: 1px solid rgba(246, 166, 35, .4);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px
}

.scholar-box b {
  color: var(--amber);
  font-size: 1rem
}

.scholar-box p {
  font-size: .86rem;
  color: #7a5a20;
  margin-top: 6px
}

.scholar-box .price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #07172a
}

.scholar-box .strike {
  text-decoration: line-through;
  color: #9c7b3f;
  font-weight: 600;
  font-size: .95rem;
  margin-right: 8px
}

/* outline accordion */
.outline {
  margin-top: 26px;
  border-top: 1px solid var(--line)
}

.outline details {
  border-bottom: 1px solid var(--line)
}

.outline summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  color: var(--ink-800)
}

.outline summary::-webkit-details-marker {
  display: none
}

.outline summary .chev {
  transition: transform .25s;
  color: var(--green-600)
}

.outline details[open] summary .chev {
  transform: rotate(180deg)
}

.outline .o-body {
  padding: 0 4px 18px;
  color: var(--ink-600);
  font-size: .92rem
}

.outline .o-body ul {
  list-style: none
}

.outline .o-body li {
  display: flex;
  gap: 10px;
  padding: 4px 0
}

.outline .o-body li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 9px
}

/* ---------- AI academy tabs ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: 22px;
  margin: 0 0 30px;
  width: max-content;
  max-width: 100%
}

.tab {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink-600);
  white-space: nowrap;
  transition: .2s
}

.tab.active {
  background: #066263;
  color: #fff;
  box-shadow: var(--shadow-sm)
}

.ai-panel {
  display: none;
  animation: fadeUp .35s ease
}

.ai-panel.active {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: start
}

.ai-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 6px
}

.ai-copy .who {
  color: var(--green-700);
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 16px
}

.ai-copy p {
  color: var(--ink-600);
  margin-bottom: 22px
}

.ai-modules {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px
}

.ai-modules h4 {
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px
}

.ai-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.ai-meta .m {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink-600)
}

.ai-meta svg {
  color: var(--green-600)
}

.soon-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-050);
  color: #a56a0b;
  font-size: .82rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 9px 15px;
  margin-bottom: 22px
}

.curr details {
  border-bottom: 1px dashed var(--line)
}

.curr details:last-child {
  border-bottom: 0
}

.curr summary {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  color: var(--ink-800)
}

.curr summary::-webkit-details-marker {
  display: none
}

.curr summary .n {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--green-050);
  color: var(--green-700);
  font-weight: 800;
  font-size: .78rem;
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.curr summary .chev {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .25s;
  color: var(--green-600)
}

.curr details[open] summary .chev {
  transform: rotate(180deg)
}

.curr .c-body {
  padding: 0 0 14px 38px;
  font-size: .88rem;
  color: var(--ink-600)
}

.curr .c-body ul {
  list-style: none
}

.curr .c-body li {
  display: flex;
  gap: 9px;
  padding: 3px 0
}

.curr .c-body li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 8px
}

/* ---------- calendar section ---------- */
.calendar-sec {
  background: #f2fff9;
  color: #07172a;
  position: relative;
  overflow: hidden
}

.calendar-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 340px at 90% 0%, rgba(0, 166, 81, .22), transparent 45%),
    radial-gradient(500px 400px at 5% 100%, rgba(0, 166, 81, .14), transparent 40%)
}

.calendar-sec .container {
  position: relative
}

.calendar-sec .eyebrow {
  color: #00671C
}

.calendar-sec h2 {
  color: #07172a
}

.calendar-sec .section-lead {
  color: var(--ink-600)
}

.journey {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding: 38px 0 10px;
  scrollbar-width: thin
}

.j-card {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  position: relative;
  box-shadow: var(--shadow-sm)
}

.j-card .j-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  display: grid;
  place-items: center;
  margin-bottom: 12px
}

.j-card.done .j-num {
  background: #4ade80;
  color: #0d1f1a
}

.j-card .j-date {
  font-size: .78rem;
  font-weight: 800;
  color: #00671C;
  letter-spacing: .04em;
  margin-bottom: 2px
}

.j-card h4 {
  font-size: .96rem;
  margin-bottom: 4px;
  color: var(--ink)
}

.j-card p {
  font-size: .8rem;
  color: var(--ink-600)
}

.j-arrow {
  flex-shrink: 0;
  align-self: center;
  color: var(--amber);
  padding: 0 6px;
  display: flex;
  align-items: center
}

.cal-copy {
  text-align: center;
  margin: 30px 0 14px;
  color: #a56a0b;
  font-weight: 700;
  font-size: .98rem
}

.cal-copy svg {
  vertical-align: -4px;
  margin-right: 8px
}

.calbox {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 30px;
  border: 1px solid var(--line)
}

.cal-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.cal-filters button {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: .84rem;
  color: var(--ink-600);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: .2s
}

.cal-filters button .cdot {
  width: 9px;
  height: 9px;
  border-radius: 50%
}

.cal-filters button.active {
  background: #00671C;
  color: #fff;
  border-color: #00671C
}

.cal-grid-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start
}

.cal-month {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px
}

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px
}

.cal-head h3 {
  font-size: 1.1rem
}

.cal-nav {
  display: flex;
  gap: 8px
}

.cal-nav button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-600);
  display: grid;
  place-items: center;
  transition: .2s
}

.cal-nav button:hover:not(:disabled) {
  background: var(--green-050);
  color: var(--green-700)
}

.cal-nav button:disabled {
  opacity: .35;
  cursor: default
}

.cal-table {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center
}

.cal-dow {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--slate);
  padding: 6px 0;
  text-transform: uppercase
}

.cal-day {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-600);
  border: 1.5px solid transparent
}

.cal-day.has-ev {
  cursor: pointer;
  background: var(--green-050);
  color: var(--green-700);
  font-weight: 800
}

.cal-day.has-ev.ai {
  background: #fef4e2;
  color: #a56a0b
}

.cal-day.has-ev.ai:hover {
  border-color: var(--amber)
}

.cal-day.has-ev.scatp {
  background: var(--green-050);
  color: var(--green-700)
}

.cal-day.has-ev.scatp:hover {
  border-color: var(--green)
}

.cal-day.selected {
  background: var(--green);
  color: #fff
}

.cal-day.selected.ai {
  background: var(--amber);
  color: #fff
}

.cal-day.selected.scatp {
  background: var(--green);
  color: #fff
}

.cal-day.selected .evdots span {
  background: #fff
}

.cal-day .evdots {
  display: flex;
  gap: 3px;
  margin-top: 3px;
  height: 5px
}

.cal-day .evdots span {
  width: 5px;
  height: 5px;
  border-radius: 50%
}

.cal-day.dim {
  opacity: .3
}

.cal-legend {
  margin-top: 14px;
  font-size: .78rem;
  color: var(--slate);
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700
}

.cal-legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block
}

.sched h3 {
  font-size: 1.05rem;
  margin-bottom: 4px
}

.sched .s-sub {
  font-size: .84rem;
  color: var(--slate);
  margin-bottom: 18px
}

.sched-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 430px;
  overflow-y: auto;
  padding-right: 6px
}

.s-item {
  display: flex;
  gap: 16px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  align-items: flex-start
}

.s-item .s-date {
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 4px
}

.s-item .s-body {
  flex: 1;
  min-width: 0
}

.s-item .s-date b {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1.1
}

.s-item .s-date small {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--slate);
  text-transform: uppercase
}

.s-item .s-tag {
  display: inline-block;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 2px 9px;
  margin-left: 8px;
  vertical-align: 2px
}

.s-item h4 {
  font-size: .93rem
}

.s-item p {
  font-size: .82rem;
  color: var(--slate);
  margin-top: 2px
}

.s-empty {
  color: var(--slate);
  font-size: .9rem;
  padding: 20px;
  text-align: center
}

/* ---------- trainers ---------- */
.faculty {
  background: var(--mist)
}

.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px
}

.fac-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column
}

.fac-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md)
}

.fac-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 18px;
  position: relative;
  background: linear-gradient(135deg, var(--green), var(--green-700));
  box-shadow: 0 0 0 5px var(--green-050);
  display: grid;
  place-items: center;
  overflow: hidden
}

.fac-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  position: absolute;
  inset: 0
}

.fac-photo span {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff
}

.fac-photo .cam {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--slate);
  box-shadow: var(--shadow-sm);
  z-index: 2
}

.fac-photo.has-photo .cam {
  display: none
}

.fac-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px
}

.fac-card .fac-role {
  color: var(--slate);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 12px
}

.fac-card .fac-bio {
  color: var(--ink-600);
  font-size: .86rem;
  margin-bottom: 16px
}

.fac-card .fac-li {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: .85rem;
  color: #0a66c2;
  border: 1.5px solid #d3e3f3;
  border-radius: 10px;
  padding: 9px 16px;
  transition: .2s
}

.fac-card .fac-li:hover {
  background: #eef5fc
}

.fac-note {
  text-align: center;
  margin-top: 28px;
  color: var(--slate);
  font-size: .92rem
}

/* ---------- FAQ ---------- */
.faq-grid {
  max-width: 820px;
  margin: 32px auto 0
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow .2s
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--green-100)
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer
}

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

.faq-item summary .plus {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-050);
  color: var(--green-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800
}

.faq-item summary .plus::before {
  content: "+"
}

.faq-item[open] summary .plus::before {
  content: "−"
}

.faq-item .f-body {
  padding: 0 20px 18px;
  color: var(--ink-600);
  font-size: .94rem
}

/* ---------- assessment quiz ---------- */
.assess {
  background: #E6F6EF;
  color: #07172a;
  position: relative;
  overflow: hidden
}

.assess::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 340px at 90% 0%, rgba(0, 166, 81, .22), transparent 45%),
    radial-gradient(500px 400px at 5% 100%, rgba(0, 166, 81, .14), transparent 40%)
}

.assess .container {
  position: relative
}

.assess .eyebrow {
  color: #00671C
}

.assess h2 {
  color: #07172a
}

.assess .section-lead {
  color: var(--ink-600)
}

.quiz-shell {
  max-width: 760px;
  margin: 44px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg)
}

.quiz-progress {
  height: 8px;
  background: var(--green-050);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 10px
}

.quiz-progress .bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), #4ade80);
  border-radius: 99px;
  transition: width .4s ease
}

.quiz-step-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #00671C;
  margin-bottom: 12px
}

.quiz-q {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  min-height: 2.2em;
  color: var(--ink)
}

.quiz-opts {
  display: grid;
  gap: 12px
}

.q-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: var(--mist);
  border: 1.5px solid var(--line);
  color: var(--ink);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: .98rem;
  font-weight: 600;
  transition: .18s
}

.q-opt:hover {
  border-color: #00671C;
  background: var(--green-050);
  transform: translateX(4px)
}

.q-opt .key {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0
}

.quiz-back {
  margin-top: 22px;
  background: none;
  border: 0;
  color: var(--ink-600);
  font-weight: 700;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.quiz-back:hover {
  color: var(--ink)
}

.quiz-back[hidden] {
  display: none
}

.result-card {
  text-align: center;
  animation: fadeUp .45s ease
}

.result-card .match-ring {
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
  position: relative
}

.match-ring svg {
  transform: rotate(-90deg)
}

.match-ring .pct {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 800
}

.match-ring .pct small {
  display: block;
  font-size: .62rem;
  letter-spacing: .12em;
  color: #00671C;
  font-weight: 700
}

.result-card .r-label {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #00671C;
  font-weight: 800;
  margin-bottom: 8px
}

.result-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--ink)
}

.result-card p.r-why {
  color: var(--ink-600);
  max-width: 640px;
  font-size: .98rem;
  margin-bottom:12px;
}

.result-facts {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px
}

.result-facts .rf {
  background: var(--green-050);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: .85rem;
  font-weight: 700
}

.result-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}

.result-alt {
  margin-top: 26px;
  font-size: .88rem;
  color: var(--ink-600)
}

.result-alt button {
  background: none;
  border: 0;
  color: #00671C;
  font-weight: 700;
  text-decoration: underline;
  font-size: .88rem
}

/* ---------- apply / contact ---------- */
.apply {
  background: #f8fffc;
  color: #07172a;
  position: relative;
  overflow: hidden
}

.apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 260px at 12% 110%, rgba(0, 166, 81, .18), transparent 55%),
    radial-gradient(500px 300px at 90% 0%, rgba(0, 166, 81, .16), transparent 40%)
}

.apply .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center
}

.apply .eyebrow {
  color: #00671C
}

.apply h2 {
  color: #07172a
}

.apply p {
  color: var(--ink-600);
  margin-bottom: 26px;
  max-width: 520px
}

.apply-steps {
  list-style: none;
  margin-bottom: 16px
}

.apply-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
  font-size: .96rem;
  font-weight: 500;
  color: var(--ink)
}

.apply-steps li>span:last-child {
  flex: 1;
  min-width: 0;
  line-height: 1.5
}

.apply-steps .n {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #00671C;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .82rem;
  flex-shrink: 0
}

.contact-card {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg)
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px
}

.c-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line)
}

.c-row:last-of-type {
  border-bottom: 0;
  margin-bottom: 8px
}

.c-row .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-050);
  color: var(--green-700);
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.c-row b {
  display: block;
  font-size: .95rem
}

.c-row small {
  color: var(--slate);
  font-weight: 600;
  font-size: .8rem
}

.contact-card .btn {
  width: 100%;
  margin-top: 14px
}

.join-photo {
  position: relative;
  margin-top: 34px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .28);
  height: 270px
}

.join-photo>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2
}

.join-photo .jp-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.join-photo .jp-caption {
  position: absolute;
  z-index: 3;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(13, 31, 26, .78);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 11px 16px;
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px
}

.join-photo .jp-caption .avs {
  display: flex
}

.join-photo .jp-caption .avs span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-size: .6rem;
  font-weight: 800;
  color: #fff;
  margin-left: -8px
}

.join-photo .jp-caption .avs span:first-child {
  margin-left: 0
}

/* ---------- about page ---------- */
.page-hero {
  background: #E6F6EF;
  color: #07172a;
  padding: 32px 0;
  position: relative;
  overflow: hidden;
  height:220px
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 85% 10%, rgba(0, 166, 81, .35), transparent 35%),
    radial-gradient(500px 400px at 5% 90%, rgba(0, 166, 81, .18), transparent 40%)
}

.page-hero .container {
  position: relative
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px
}

.page-hero p {
  color: var(--ink-600);
  font-size: 1.1rem;
  max-width: 640px
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden
}

.stat {
  padding: 30px 26px;
  border-left: 1px solid var(--line)
}

.stat:first-child {
  border-left: 0
}

.stat b {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -.02em
}

.stat span {
  font-size: .88rem;
  color: var(--slate);
  font-weight: 600
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  height: 100%;
  align-items: center
}

.about-copy p {
  color: var(--ink-600);
  margin-bottom: 16px
}

.about-quote {
  border-left: 4px solid var(--green);
  background: var(--green-050);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-800);
  margin-top: 26px
}

.about-visual {
  position: relative
}

.about-visual .logo-frame {
  border: 1px solid var(--line);
  border-radius: 24px;
  place-items: center;
  box-shadow: var(--shadow-lg)
}

.about-visual .logo-frame img {
  width:120%;
  border-radius: 12px
}

.approach {
  background: var(--mist)
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px
}

.a-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .22s, box-shadow .22s;
  position: relative;
  overflow: hidden
}

.a-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #4ade80);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

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

.a-card:hover::after {
  transform: scaleX(1)
}

.a-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-050);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: 20px
}

.a-card h3 {
  font-size: 1.06rem;
  margin-bottom: 10px
}

.a-card p {
  font-size: .92rem;
  color: var(--ink-600)
}

/* ---------- register page ---------- */
.reg-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 0 88px
}

.reg-banner {
  background: #f2fff9;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: #07172a;
  padding: 24px 44px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px
}

.reg-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(480px 240px at 85% 15%, rgba(0, 166, 81, .28), transparent 55%),
    radial-gradient(400px 300px at 5% 100%, rgba(0, 166, 81, .14), transparent 40%)
}

.reg-banner>* {
  position: relative
}

.reg-banner img {
  width: 130px;
  border-radius: 10px;
  margin-bottom: 20px
}

.reg-banner h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 10px
}

.reg-banner p {
  color: var(--ink-600);
  font-size: .98rem;
}

.reg-intro {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm)
}

.reg-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px;
  background: #f3f7f5;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm)
}

.reg-program-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-600);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}

.reg-program-btn.active {
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 166, 81, .2);
}

.reg-intro p {
  color: var(--ink-600);
  font-size: .95rem
}

.reg-intro p+p {
  margin-top: 12px
}

.reg-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm)
}

.reg-form h2 {
  font-size: 1.15rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-050);
  margin-bottom: 24px
}

.reg-form h2 span {
  color: var(--green-600)
}

.f-field {
  margin-bottom: 22px;
  border: 0;
  padding: 0;
  min-width: 0
}

.f-field label,
.f-field legend {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 8px;
  padding: 0
}

.f-field label.declare {
  display: flex;
  width: auto;
  font-weight: 600;
  margin-bottom: 0;
  padding: 10px
}

.f-field label .req {
  color: #d33
}

.f-field label .opt {
  color: var(--slate);
  font-weight: 600;
  font-size: .8rem
}

.f-field input[type=text],
.f-field input[type=email],
.f-field input[type=tel],
.f-field textarea,
.f-field select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: inherit;
  /* 16px min keeps iOS Safari from auto-zooming (making the field jump larger) on focus */
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s
}

.f-field input:focus,
.f-field textarea:focus,
.f-field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, .15)
}

.f-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6
}

.f-field .hint {
  font-size: .8rem;
  color: var(--slate);
  margin-top: 6px
}

/*fradio1 is Current Status*/
.f-radio1 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}



.f-radio1 label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: .93rem;
  margin: 0;
  cursor: pointer;
  color: #006e3e;

  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 12px 24px;
  transition: .15s
}

.f-radio1 label:hover {
  border-color: var(--green)
}

.f-radio1 input {
  accent-color: var(--green);
  width: 17px;
  height: 17px;
  flex-shrink: 0
}

.f-radio1 label:has(input:checked) {
  background: var(--green-050);
  border-color: var(--green)
}



.f-radio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 2fr));
  gap: 9px
}

.f-radio label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: .93rem;
  margin: 0;
  cursor: pointer;
  color: #006e3e;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 12px 16px;
  transition: .15s
}

.f-radio label:hover {
  border-color: var(--green)
}

.f-radio input {
  accent-color: var(--green);
  width: 17px;
  height: 17px;
  flex-shrink: 0
}

.f-radio label:has(input:checked) {
  background: var(--green-050);
  border-color: var(--green)
}

.bn {
  font-size: .92rem;
  color: var(--ink-600)
}

.assess-note {
  background: var(--amber-050);
  border: 1px solid #817b70;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px
}

.assess-note p {
  font-size: 0.85rem;
  color: #000000
}

.assess-note p+p {
  margin-top: 10px
}

.assess-note .warn {
  font-weight: 700
}

.declare {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--mist);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  margin: 6px 0 26px;
  cursor: pointer
}

.declare input {
  accent-color: var(--green);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0
}

.declare span {
  font-size: .92rem;
  font-weight: 600
}

.reg-form .btn {
  width: 100%;
  font-size: 1.02rem;
  padding: 16px
}

.f-error {
  color: #c22;
  font-size: .82rem;
  margin-top: 6px;
  display: none
}

.f-field.invalid input,
.f-field.invalid textarea {
  border-color: #c22
}

.f-field.invalid .f-error {
  display: block
}

.reg-success {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  text-align: center
}

.reg-success.show {
  display: block;
  animation: fadeUp .4s ease
}

.reg-success .ok-ic {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--green-050);
  color: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto 24px
}

.reg-success h2 {
  font-size: 1.4rem;
  margin-bottom: 18px
}

.reg-success p {
  color: var(--ink-600);
  font-size: .96rem;
  margin-bottom: 14px;
  text-align: left
}

.reg-success p.center-p {
  text-align: center
}

.reg-success .btn {
  margin-top: 16px
}

/* ---------- footer ---------- */
footer {
  background: var(--ink);
  color: #9db4ad;
  padding: 64px 0 28px;
  font-size: .9rem
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px
}

.foot-brand img {
  width: 150px;
  border-radius: 10px;
  margin-bottom: 18px
}

.foot-brand p {
  max-width: 300px;
  font-size: .86rem
}

footer h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px
}

footer ul {
  list-style: none
}

footer li {
  padding: 5px 0
}

footer a {
  color: #9db4ad
}

footer a:hover {
  color: #fff
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem
}

.foot-bottom a {
  color: #c9d9d3;
  font-weight: 600
}

/* ---------- misc ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease
}

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

#toTop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  z-index: 90
}

#toTop.show {
  opacity: 1;
  pointer-events: auto
}

#toTop:hover {
  background: var(--green-600);
  transform: translateY(-3px)
}

/* ---------- responsive ---------- */
@media(max-width:1000px) {
  .slide .container {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat:nth-child(3) {
    border-left: 0
  }

  .stat {
    border-top: 1px solid var(--line)
  }

  .stat:nth-child(-n+2) {
    border-top: 0
  }

  .about-grid,
  .prog-flag,
  .ai-panel.active,
  .apply .container,
  .cal-grid-wrap {
    grid-template-columns: 1fr
  }

  .about-grid > *,
  .prog-flag > *,
  .ai-panel.active > *,
  .apply .container > *,
  .cal-grid-wrap > * {
    min-width: 0
  }

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

  .fac-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .foot-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-visual {
    order: -1
  }

  .sched-list {
    max-height: none
  }
}

@media(max-width:680px) {
  section {
    padding: 20px 0
  }

  .nav-links {
    position: fixed;
    inset: 90px 0 auto 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .3s, visibility .3s;
    z-index: 99
  }

  .nav-links.open {
    transform: none;
    visibility: visible
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 10px 0
  }

  .hamburger {
    display: block
  }

  .nav .btn {
    display: none
  }

  .cards-4,
  .fac-grid,
  .fact-grid {
    grid-template-columns: 1fr
  }

  .prog-main,
  .prog-side {
    padding: 32px 26px
  }

  .quiz-shell {
    padding: 28px 22px
  }

  .topbar .tb-right {
    display: none
  }

  .slide {
    padding: 56px 0 96px
  }

  .slider-arrow {
    display: none
  }

  .calbox {
    padding: 20px 16px
  }

  .cal-month {
    padding: 16px 10px
  }

  .cal-table {
    gap: 3px
  }

  .cal-day {
    font-size: .76rem;
    border-radius: 8px
  }

  .cal-dow {
    font-size: .62rem
  }

  .s-item {
    gap: 12px;
    padding: 12px
  }

  .reg-form {
    padding: 26px 20px
  }

  .reg-banner {
    padding: 34px 26px
  }

  .prog-toggle .pt {
    padding: 11px 16px;
    font-size: .86rem
  }
}