:root {
  --green: #5EAD82;
  --green-dark: #3F8F68;
  --green-light: #EAF6EF;
  --navy: #34405A;
  --ink: #1F2D3D;
  --white: #FFFFFF;
  --border: #E4E9EE;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  max-width: 760px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo img {
  height: 28px;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav > a:not(.btn) {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.header-nav > a:not(.btn):hover {
  color: var(--green-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn:active { transform: scale(0.98); }

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

.btn-primary:hover { background: var(--green-dark); }

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

.btn-white:hover { background: var(--green-light); }

.btn-large {
  padding: 16px 30px;
  font-size: 16px;
}

.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  font-size: 14px;
  line-height: 1;
}

.btn-white .arrow { background: var(--green-light); color: var(--green-dark); }

/* Hero */
.hero {
  text-align: center;
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--green-light) 0%, var(--white) 100%);
}

.badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--ink);
  font-weight: 800;
}

.hero h1 .accent {
  color: var(--green-dark);
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 18px;
  color: var(--navy);
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 32px;
}

.hero-meta span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-alt {
  background: #FAFBFC;
}

.section h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--ink);
}

.section p {
  color: var(--navy);
  font-size: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Apply section */
.apply-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1F2A3D 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.apply-section h2 {
  color: var(--white);
  font-size: 30px;
}

.apply-lead {
  color: #C9D3E0;
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.apply-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 16px;
}

.apply-step {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-step-text h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--white);
}

.apply-step-text p {
  margin: 0;
  color: #C9D3E0;
  font-size: 15px;
}

.apply-step-text a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.apply-section .btn-large {
  margin-top: 24px;
}

/* Footer */
.site-footer {
  background: #12192A;
  color: #8C97AC;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.2px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer a {
  color: #C9D3E0;
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .header-nav { gap: 14px; }
  .header-nav > a:not(.btn) { display: none; }
  .section h2 { font-size: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
