:root {
  --green: #6dbb2f;
  --green-dark: #4d951b;
  --green-soft: #eff7e9;
  --navy: #0b2a4a;
  --navy-2: #123d69;
  --blue: #245a90;
  --ink: #10243e;
  --text: #34465a;
  --muted: #6f7f90;
  --line: #e4e9ef;
  --bg: #ffffff;
  --bg-soft: #f7f9fb;
  --shadow: 0 18px 55px rgba(15, 39, 67, .12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Poppins", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 9999;
  background: #fff; color: var(--navy); padding: 10px 14px;
  border-radius: 8px; box-shadow: var(--shadow);
}
.skip-link:focus { top: 12px; }

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

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228,233,239,.85);
}
.header-inner {
  height: 78px; display: flex; align-items: center;
  justify-content: space-between; gap: 28px;
}
.brand {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  gap: 1px; min-width: 205px;
}
.brand img { width: 138px; height: auto; }
.brand-sub {
  margin-left: 4px; font-family: "Outfit", sans-serif; font-size: 11px;
  line-height: 1; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 800; color: var(--navy);
}
.main-nav {
  display: flex; align-items: center; gap: 28px;
  font-family: "Outfit", sans-serif; font-weight: 700;
  font-size: 15px; color: var(--ink);
}
.main-nav > a:not(.btn) { position: relative; }
.main-nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 2px; background: var(--green); transition: right .2s ease;
}
.main-nav > a:not(.btn):hover::after { right: 0; }

.menu-toggle {
  display: none; width: 42px; height: 42px; border: 0;
  background: transparent; cursor: pointer;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--navy);
  margin: 5px auto; display: block; transition: .2s ease;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 9px; padding: 13px 20px; font-family: "Outfit", sans-serif;
  font-weight: 800; line-height: 1; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff; background: linear-gradient(180deg, #79c638, #5aa922);
  box-shadow: 0 10px 25px rgba(91, 170, 34, .22);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(91, 170, 34, .30); }
.btn-secondary {
  color: #fff; background: var(--blue);
  box-shadow: 0 10px 24px rgba(36, 90, 144, .20);
}
.btn-sm { padding: 11px 17px; }
.btn-lg { padding: 16px 24px; font-size: 17px; }

.section { padding: 92px 0; position: relative; }
.section-tight { padding-top: 78px; padding-bottom: 78px; }
.section-heading { max-width: 740px; margin-bottom: 44px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  margin-bottom: 10px; color: var(--green-dark);
  font-family: "Outfit", sans-serif; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; font-size: 12px;
}
.eyebrow.light { color: #b9f18d; }
h1, h2, h3 {
  color: var(--ink); font-family: "Outfit", sans-serif;
  margin-top: 0; line-height: 1.05;
}
h1 { font-size: clamp(48px, 5.1vw, 74px); letter-spacing: -.035em; margin-bottom: 22px; }
h1 span { color: var(--green-dark); }
h2 { font-size: clamp(34px, 3.2vw, 48px); letter-spacing: -.025em; margin-bottom: 15px; }
h3 { font-size: 22px; margin-bottom: 10px; }
p { margin-top: 0; }
.section-heading p { color: var(--muted); font-size: 17px; }

.hero {
  padding: 0; overflow: hidden;
  background: radial-gradient(circle at 90% 18%, rgba(109,187,47,.12), transparent 30%),
              linear-gradient(180deg, #fff 0%, #fff 70%, #f8fafc 100%);
}
.hero-wash {
  position: absolute; right: -120px; top: -120px; width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,187,47,.10), rgba(109,187,47,0) 67%);
  pointer-events: none;
}
.hero-grid {
  min-height: 630px; padding-top: 76px; padding-bottom: 78px;
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: 62px;
}
.hero-lead { max-width: 660px; font-size: 18px; color: #526275; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin: 30px 0 34px; }
.text-link { font-family: "Outfit", sans-serif; font-weight: 800; color: var(--ink); }
.hero-trust {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px; max-width: 680px;
}
.hero-trust > div {
  display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto;
  column-gap: 10px; align-items: center;
}
.hero-trust strong { color: var(--ink); font-family: "Outfit", sans-serif; font-size: 13px; }
.hero-trust small { color: var(--muted); font-size: 10px; line-height: 1.3; }
.mini-icon {
  grid-row: 1 / 3; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: #eef4fa; color: var(--navy);
  font-family: "Outfit", sans-serif; font-weight: 800; font-size: 13px;
}
.hero-media { position: relative; }
.hero-card {
  position: relative; border-radius: 24px; padding: 10px;
  background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 28px 70px rgba(15,39,67,.16);
}
.hero-card img {
  width: 100%; aspect-ratio: 1.25; object-fit: cover;
  object-position: center; border-radius: 17px;
}
.hero-float {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.96); border: 1px solid rgba(228,233,239,.9);
  border-radius: 12px; box-shadow: 0 14px 35px rgba(15,39,67,.12);
}
.hero-float strong { color: var(--ink); font-family: "Outfit", sans-serif; }
.hero-float small { display: block; color: var(--muted); font-size: 10px; line-height: 1.25; }
.hero-float-top { top: 20px; left: -22px; padding: 12px 15px; flex-direction: column; align-items: flex-start; gap: 1px; }
.float-kicker { color: var(--green-dark); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.hero-float-bottom { bottom: 22px; right: -24px; padding: 11px 14px; }
.pulse-dot {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: #6dbb2f;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(109, 187, 47, 0.45);
  animation: pulse-status 2s ease-out infinite;
}

@keyframes pulse-status {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(2.3);
    opacity: 0;
  }

  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

.stats-band { background: linear-gradient(90deg, #0a2847, #123f70); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  min-height: 116px; display: flex; align-items: center; gap: 16px;
  padding: 22px 30px; border-right: 1px solid rgba(255,255,255,.15);
}
.stat:last-child { border-right: 0; }
.stat-icon {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.62);
  color: #fff; font-weight: 800;
}
.stat strong {
  display: block; font-family: "Outfit", sans-serif; font-size: 30px;
  line-height: 1; color: #fff;
}
.stat span:last-child { font-size: 12px; color: rgba(255,255,255,.78); }

.feature-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.feature-card { text-align: center; padding: 8px 8px 0; }
.icon-bubble {
  width: 62px; height: 62px; margin: 0 auto 15px; display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft); color: var(--green-dark);
  font-size: 27px; font-family: "Outfit", sans-serif; font-weight: 800;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.courses-section { background: var(--bg-soft); }
.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.course-card {
  overflow: hidden; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 14px 38px rgba(15,39,67,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.course-image { position: relative; background: #081d31; }
.course-image img { width: 100%; aspect-ratio: 1.78; object-fit: cover; }
.course-badge {
  position: absolute; left: 18px; bottom: 14px; padding: 7px 10px;
  border-radius: 999px; color: #173814; background: rgba(220,247,199,.96);
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
}
.course-badge.blue { color: #fff; background: rgba(23,76,127,.94); }
.course-content { padding: 27px; }
.course-content > p { color: var(--muted); }
.course-bullets {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px 20px;
  margin: 22px 0 28px; font-size: 13px; color: #45576a;
}
.course-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; padding-top: 20px; border-top: 1px solid var(--line);
}
.price small {
  display: block; color: var(--muted); font-size: 10px;
  text-transform: uppercase; letter-spacing: .08em;
}
.price strong {
  display: block; color: var(--ink); font-family: "Outfit", sans-serif;
  font-size: 31px; line-height: 1.1;
}

.community-section { background: #fff; padding-top: 78px; }
.community-panel {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 30px; border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(135deg, #f7faff, #fff 60%), var(--bg);
  box-shadow: 0 14px 42px rgba(15,39,67,.07);
}
.community-preview {
  overflow: hidden; border-radius: 14px; border: 1px solid #dfe6ee;
  background: #fff; box-shadow: 0 14px 35px rgba(15,39,67,.10);
}
.browser-dots { padding: 10px 12px; display: flex; gap: 6px; border-bottom: 1px solid #e7ebef; }
.browser-dots span { width: 7px; height: 7px; border-radius: 50%; background: #cbd5df; }
.community-preview img { width: 100%; aspect-ratio: 1.6; object-fit: cover; object-position: top; }
.community-copy p { color: var(--muted); }
.community-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 28px 0; }
.community-benefits div { text-align: center; }
.community-benefits span { display: block; color: var(--green-dark); font-size: 24px; margin-bottom: 7px; }
.community-benefits strong { display: block; color: var(--ink); font-family: "Outfit", sans-serif; font-size: 12px; }
.community-benefits small { display: block; color: var(--muted); font-size: 9px; }

.learn-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.learn-card {
  padding: 24px 16px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; text-align: center;
}
.learn-icon {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 13px;
  display: grid; place-items: center; background: var(--green-soft); color: var(--green-dark);
  font-family: "Outfit", sans-serif; font-size: 24px; font-weight: 800;
}
.learn-card h3 { font-size: 17px; }
.learn-card p { color: var(--muted); font-size: 12px; line-height: 1.5; margin: 0; }

.faq-section { background: var(--bg-soft); }
.faq-wrap { max-width: 980px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 18px 20px; border: 0; background: transparent; color: var(--ink);
  text-align: left; cursor: pointer; font-family: "Outfit", sans-serif; font-weight: 800;
}
.faq-question span { font-size: 24px; font-weight: 500; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] span { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { padding: 0 20px 20px; margin: 0; color: var(--muted); font-size: 14px; }

.final-cta {
  position: relative; overflow: hidden; padding: 58px 0; color: #fff;
  background: linear-gradient(90deg, rgba(7,31,55,.98), rgba(11,55,95,.97)),
              radial-gradient(circle at 85% 20%, rgba(109,187,47,.45), transparent 35%);
}
.final-cta-inner {
  position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.final-cta h2 { color: #fff; margin-bottom: 10px; }
.final-cta p { max-width: 720px; margin: 0; color: rgba(255,255,255,.78); }

.site-footer { background: #081b2d; color: rgba(255,255,255,.7); padding: 48px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 44px; }
.brand-footer img { width: 130px; filter: drop-shadow(0 1px 0 rgba(255,255,255,.2)); }
.brand-footer .brand-sub { color: rgba(255,255,255,.82); }
.footer-brand p { max-width: 300px; margin-top: 16px; font-size: 13px; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-col strong { color: #fff; font-family: "Outfit", sans-serif; margin-bottom: 5px; }
.footer-col a { font-size: 13px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 20px; font-size: 11px;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

@media (max-width: 1080px) {
  .main-nav { gap: 18px; font-size: 14px; }
  .hero-grid { gap: 38px; }
  .feature-row { grid-template-columns: repeat(3, 1fr); }
  .learn-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; z-index: 2; }
  .main-nav {
    position: absolute; top: 78px; left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 0; padding: 14px 20px 22px;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(15,39,67,.08);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 12px 4px; }
  .main-nav .btn { margin-top: 8px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-copy { max-width: 760px; }
  .hero-media { max-width: 720px; margin-inline: auto; }
  .community-panel { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: 1fr; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .header-inner { height: 70px; }
  .main-nav { top: 70px; }
  .brand { min-width: 0; }
  .brand img { width: 120px; }
  .brand-sub { font-size: 9px; }
  h1 { font-size: 43px; }
  h2 { font-size: 34px; }
  .hero-grid { min-height: unset; padding-top: 48px; padding-bottom: 56px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-float-top { left: 10px; top: 10px; }
  .hero-float-bottom { right: 10px; bottom: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 14px; min-height: 105px; }
  .stat strong { font-size: 25px; }
  .stat-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child { grid-column: 1 / -1; max-width: 320px; margin-inline: auto; }
  .course-content { padding: 22px; }
  .course-bullets { grid-template-columns: 1fr; }
  .course-footer { align-items: stretch; flex-direction: column; }
  .course-footer .btn { width: 100%; }
  .community-panel { padding: 18px; gap: 34px; }
  .community-benefits { grid-template-columns: 1fr 1fr; gap: 22px 12px; }
  .learn-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  h1 { font-size: 37px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat:last-child { border-bottom: 0; }
  .feature-row, .learn-grid { grid-template-columns: 1fr; }
  .feature-card:last-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}
