*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --blue: #0062a6;
  --blue-dark: #03548e;
  --blue-light: #e8effd;
  --blue-mid: #0089c0;
  --orange: #f97316;
  --amber: #f59e0b;
  --green: #22c55e;
  --white: #ffffff;
  --off: #f7f9ff;
  --gray: #64748b;
  --text: #1e293b;
  --border: #e2e8f0;
  --font: 'Poppins', sans-serif;
  --body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--body);
  color: var(--text);
  background: #fff;
  overflow-x: hidden
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%
}

/* NAV */
nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  height: 72px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07)
}

.ub-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10
}

.star {
  position: absolute;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), transparent);
  border-radius: 100%;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-35deg);
  filter: blur(1.5px)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain
}

.logo-text {
  font-family: var(--font);
  font-weight: 700;
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.3;
  max-width: 170px
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-phone {
  font-family: var(--font);
  font-weight: 700;
  font-size: .9rem;
  color: var(--blue);
  text-decoration: none
}

.nav-btn {
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap
}

.nav-btn:hover {
  background: #ea6d0d;
  transform: translateY(-1px)
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8effd 55%, #fef3c7 100%);
  padding-top: 64px;
  min-height: 580px;
  overflow: hidden;
  position: relative
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 79, 214, .07) 0%, transparent 70%);
  pointer-events: none
}

.hero-left {
  padding-bottom: 60px
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--blue);
  font-family: var(--font);
  font-weight: 600;
  font-size: .82rem;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(26, 79, 214, .1)
}

.hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 14px
}

.hero h1 .blue {
  color: var(--blue)
}

.hero h1 .orange {
  color: var(--orange)
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 520px
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px
}

.pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px
}

.btn-main {
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(26, 79, 214, .35);
  transition: background .2s, transform .15s, box-shadow .2s
}

.btn-main:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 79, 214, .4)
}

.btn-sec {
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s
}

.btn-sec:hover {
  background: var(--blue-light);
  transform: translateY(-2px)
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.73);
  backdrop-filter: blur(10px);
  padding: 22px 32px;
  border-radius: 16px;
  border: 1px solid rgba(26, 79, 214, .1);
  box-shadow: 0 10px 40px rgba(26, 79, 214, .08);
  width: fit-content;
  position: relative;
  z-index: 1
}

.hero-stats::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(0, 137, 192, .2), transparent 40%, rgba(0, 137, 192, .1));
  border-radius: inherit;
  opacity: 0.6
}

.hstat-num {
  font-family: var(--font);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px
}

.hstat-lab {
  font-size: .8rem;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px
}

.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.hero-img-placeholder {
  width: 440px;
  height: 400px;
  background: linear-gradient(160deg, #dbeafe 0%, #bfdbfe 50%, #fef3c7 100%);
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  overflow: hidden
}

.hip-circle {
  width: 100px;
  height: 100px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  box-shadow: 0 8px 32px rgba(26, 79, 214, .3)
}

.hip-text {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--blue);
  text-align: center;
  line-height: 1.3
}

.hip-sub {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange)
}

.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .13);
  padding: 10px 16px;
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 700
}

.hf1 {
  top: 36px;
  left: -24px;
  color: var(--blue)
}

.hf1 span {
  display: block;
  font-size: 1.3rem;
  font-weight: 900
}

.hf2 {
  bottom: 60px;
  right: -16px;
  color: var(--orange);
  text-align: center
}

.hf2 span {
  display: block;
  font-size: 1.1rem;
  font-weight: 900
}

/* URGENCY BAR */
.urgency-bar {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid));
  padding: 24px 0px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
  overflow: hidden
}

#particles-js canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none
}

.ub-marquee {
  overflow: hidden;
  width: 100%
}

.ub-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px
}

.ub-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03)
}

.ub-text {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #fff;
  text-align: left
}

.ub-badge {
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-weight: 900;
  font-size: .76rem;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap
}

@media(max-width:768px) {
  .ub-inner {
    gap: 10px;
    text-align: center;
    justify-content: center
  }

  .ub-text {
    text-align: center
  }
}

/* TRUST STRIP */
.trust-strip {
  background: #fff;
  padding: 36px 0;
  border-bottom: 1px solid var(--border)
}

.trust-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center
}

.ti {
  padding: 10px
}

.ti-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 12px;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.8)
}

.ti-num {
  font-family: var(--font);
  font-weight: 900;
  font-size: 2rem;
  color: var(--blue);
  line-height: 1
}

.ti-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .7px
}

/* SECTIONS */
.section {
  padding: 80px 0
}

.s-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font);
  font-weight: 700;
  font-size: .8rem;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: .5px;
  text-transform: uppercase
}

.s-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25
}

.s-title .blue {
  color: var(--blue)
}

.s-title .orange {
  color: var(--orange)
}

.s-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 680px
}

.center {
  text-align: center
}

.center .s-sub {
  margin: 0 auto
}

/* COURSE */
.course-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  margin: 44px auto 0;
  align-items: center;
  text-align: left
}

.course-card {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 48px 52px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(26, 79, 214, .12);
  position: relative
}

.course-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(26, 79, 214, .1))
}

.cc-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: .82rem;
  padding: 5px 22px;
  border-radius: 50px;
  white-space: nowrap
}

.cc-dur {
  font-family: var(--font);
  font-weight: 900;
  font-size: 4.5rem;
  color: var(--blue);
  line-height: 1
}

.cc-dur sup {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray)
}

.cc-name {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--text);
  margin: 10px 0 12px
}

.cc-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7
}

.cc-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px 0
}

.ccf {
  background: var(--blue-light);
  color: var(--blue);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px
}

/* HIGHLIGHTS */
.hl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px auto 0
}

.hl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden
}

.hl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid))
}

.hl-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--orange), var(--amber))
}

.hl-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--green), #16a34a)
}

.hl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1)
}

.hl-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px
}

.hl-card:nth-child(2) .hl-icon {
  background: #fff7ed
}

.hl-card:nth-child(3) .hl-icon {
  background: #f0fdf4
}

.hl-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 8px
}

.hl-desc {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.65
}

/* MODULES */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 40px auto 0
}

.mod {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  transition: border-color .2s, transform .15s, box-shadow .15s;
  cursor: default
}

.mod:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(26, 79, 214, .1)
}

.mod-icon {
  font-size: 1.75rem;
  margin-bottom: 8px
}

.mod-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: .88rem;
  color: var(--text)
}

/* REGISTER SCROLL OFFSET */
#register {
  scroll-margin-top: 90px
}

/* FORM */
.form-section {
  background: linear-gradient(135deg, #f0f5ff 0%, #fef3c7 100%)
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin: 0 auto;
  align-items: start;
  padding-top: 8px
}

.form-perks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.fp {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(26, 79, 214, .08);
  border: 1px solid rgba(26, 79, 214, .1);
  transition: transform .2s
}

.fp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 79, 214, .12)
}

.fp-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(26, 79, 214, .25)
}

.fp-text strong {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue-dark);
  display: block;
  margin-bottom: 4px
}

.fp-text span {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.5;
  display: block
}

.form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(26, 79, 214, .14);
  overflow: hidden
}

.fc-head {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid));
  padding: 28px 32px 24px;
  text-align: center
}

.fc-head h3 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4px
}

.fc-head p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .75)
}

.fc-body {
  padding: 20px
}

/* FAQ */
.faq-wrap {
  max-width: 760px;
  margin: 40px auto 0
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden
}

.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  font-size: .93rem;
  color: var(--text);
  gap: 12px
}

.faq-q:hover {
  background: var(--off)
}

.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  transition: transform .25s, background .2s
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: #fff
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .25s;
  padding: 0 22px;
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.7
}

.faq-item.open .faq-a {
  max-height: 140px;
  padding-bottom: 18px
}

/* FOOTER */
footer {
  background: #0a1a3e;
  padding: 64px 0 30px
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}

.footer-brand .logo-img {
  margin-bottom: 12px;
  display: block;
  height: 52px
}

.footer-brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
  margin: 10px 0 20px
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px
}

.fsoc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s, border-color .2s, color .2s, transform .15s
}

.fsoc:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
  transform: translateY(-2px)
}

.fsoc svg {
  flex-shrink: 0
}

.footer-col h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 16px
}

.f-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 10px
}

.f-contact a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s
}

.f-contact a:hover {
  color: var(--amber)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
  max-width: 1000px;
  margin: 0 auto
}

/* WA FLOAT */
.wa {
  position: fixed;
  bottom: 24px;
  right: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
  animation: wapulse 2.5s infinite;
  transition: transform .2s
}

.wa:hover {
  transform: scale(1.1);
  animation: none
}

@keyframes wapulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5)
  }

  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, .8)
  }
}

/* FADE-IN */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

/* RESPONSIVE */
@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-left {
    padding-bottom: 20px
  }

  .hero-right {
    display: none
  }

  .hero-stats,
  .hero-pills,
  .hero-btns {
    justify-content: center
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .form-layout {
    grid-template-columns: 1fr
  }

  .course-layout {
    grid-template-columns: 1fr;
    max-width: 600px;
    text-align: center
  }

  .modules-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:767px) {
  .section {
    padding: 50px 0;
  }

  .hero {
    padding-top: 30px;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .nav-phone {
    display: none
  }

  .fc-head {
    padding-left: 20px;
    padding-right: 20px
  }

  .fc-body {
    padding-left: 0px;
    padding-right: 0px
  }

  .course-card {
    padding: 36px 24px
  }

  .footer-social {
    flex-direction: column;
  }

  .logo-text {
    display: none;
  }

}