@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;900&family=Nunito:wght@400;500;600;700;800&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1a2e23;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: #085C4B;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #145f2f;
  text-decoration: underline;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  color: #1a2e23;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 767px) {
  .container {
    padding-inline: 1rem;
  }
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.section {
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }
}
.section.bg-light {
  background: #fafcfb;
}
.section.bg-white {
  background: #ffffff;
}
.section.ai-course {
  background: linear-gradient(135deg, #EEF2FF 0%, #FAF5FF 50%, #FDF2F8 100%);
}
.section.contest-rules {
  background: #F9FAFB;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: #E0E7FF;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #085C4B;
  margin-bottom: 1rem;
}
.section-eyebrow.yellow {
  background-color: #FEF9C3;
  color: #A16207;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #1a2e23;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 1.875rem;
  }
}
.section-title.mini {
  font-size: 2.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #4a6155;
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.help-bar {
  margin-top: 2rem;
  text-align: center;
}

.help-bar-title {
  font-size: 0.875rem;
  color: #8aab97;
  margin-bottom: 0.75rem;
}

.help-bar-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 575px) {
  .help-bar-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.help-bar-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4a6155;
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms ease;
  padding: 0.5rem 0.75rem;
  border-radius: 1rem;
}
.help-bar-link svg {
  width: 15px;
  height: 15px;
  color: #085C4B;
}
.help-bar-link:hover {
  color: #085C4B;
  background: #eaf7ef;
  text-decoration: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E5E7EB;
  padding: 18px 0;
  box-shadow: 0 1px 3px rgba(26, 122, 60, 0.08), 0 1px 2px rgba(26, 122, 60, 0.04);
}

.navbar-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 767px) {
  .navbar-inner {
    padding-inline: 1rem;
  }
}
.navbar-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  text-decoration: none;
  z-index: 1;
}

.navbar-logo-icon {
  width: 166px;
  height: 44px;
  object-fit: contain;
}

.navbar-logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #085C4B;
  letter-spacing: -0.02em;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .navbar-nav {
    display: none;
  }
}

.nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  transition: all 150ms ease;
}
.nav-link svg {
  width: 16px;
  height: 16px;
}
.nav-link:hover {
  background: #eaf7ef;
  color: #085C4B;
  text-decoration: none;
}
.nav-link.active {
  color: #085C4B;
  background: #EEF2FF;
  border: 2px solid #C7D2FE;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.navbar-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.navbar-cta {
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  background: linear-gradient(135deg, #085C4B 0%, #45746B 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(26, 122, 60, 0.1), 0 2px 6px rgba(26, 122, 60, 0.06);
}
@media (max-width: 767px) {
  .navbar-cta {
    display: none;
  }
}
.navbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 40px rgba(26, 122, 60, 0.14), 0 4px 12px rgba(26, 122, 60, 0.08);
  color: #ffffff;
  text-decoration: none;
}
.navbar-cta:active {
  transform: translateY(0);
}

.navbar-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 0.625rem;
  background: #eaf7ef;
  border: none;
  cursor: pointer;
  color: #085C4B;
  transition: background 150ms ease;
  flex-shrink: 0;
}
.navbar-burger svg {
  width: 22px;
  height: 22px;
}
.navbar-burger:hover {
  background: rgb(215.5344827586, 239.9655172414, 224.9310344828);
}
@media (max-width: 767px) {
  .navbar-burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 200;
  transition: background 0.35s ease;
}
.drawer-overlay.open {
  display: block;
  background: rgba(0, 0, 0, 0.45);
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #ffffff;
  z-index: 210;
  box-shadow: 0 20px 60px rgba(26, 122, 60, 0.18), 0 8px 24px rgba(26, 122, 60, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #E5E7EB;
  background: linear-gradient(160deg, #145f2f 0%, #1a7a3c 50%, #2ca05a 100%);
}

.drawer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  text-decoration: none;
}
.drawer-logo img {
  width: 120px;
  height: 32px;
  object-fit: contain;
}

.drawer-logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #ffffff;
  transition: background 150ms ease;
  flex-shrink: 0;
}
.drawer-close svg {
  width: 18px;
  height: 18px;
}
.drawer-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 1rem 0.75rem;
  flex: 1;
  overflow-y: auto;
}

.drawer-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: #4a6155;
  text-decoration: none;
  transition: all 150ms ease;
}
.drawer-link svg {
  width: 20px;
  height: 20px;
  color: #085C4B;
  flex-shrink: 0;
}
.drawer-link:hover {
  background: #eaf7ef;
  color: #085C4B;
  text-decoration: none;
}
.drawer-link.active {
  background: #eaf7ef;
  color: #085C4B;
}
.drawer-link + .drawer-link {
  margin-top: 0.25rem;
}

.drawer-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 0.75rem 1rem;
}

.drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #E5E7EB;
}

.drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.drawer-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.drawer-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.drawer-cta {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #085C4B 0%, #45746B 100%);
  color: #ffffff;
  font-size: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(26, 122, 60, 0.1), 0 2px 6px rgba(26, 122, 60, 0.06);
}
.drawer-cta:hover {
  box-shadow: 0 10px 40px rgba(26, 122, 60, 0.14), 0 4px 12px rgba(26, 122, 60, 0.08);
  color: #ffffff;
  text-decoration: none;
}

.drawer-contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.drawer-contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #8aab97;
  text-decoration: none;
}
.drawer-contact-item svg {
  width: 14px;
  height: 14px;
  color: #085C4B;
  flex-shrink: 0;
}
.drawer-contact-item:hover {
  color: #085C4B;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background: linear-gradient(135deg, #085C4B 0%, #45746B 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(26, 122, 60, 0.1), 0 2px 6px rgba(26, 122, 60, 0.06);
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(26, 122, 60, 0.18), 0 8px 24px rgba(26, 122, 60, 0.1);
  color: #ffffff;
  text-decoration: none;
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(26, 122, 60, 0.08), 0 1px 2px rgba(26, 122, 60, 0.04);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-secondary {
  background: #ffffff;
  color: #085C4B;
  border: 2px solid #085C4B;
  padding: calc(1rem - 2px) calc(2rem - 2px);
  font-size: 1.125rem;
}
.btn-secondary:hover {
  background: #eaf7ef;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-ghost:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.btn-ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-ghost {
  background: transparent;
  color: #085C4B;
  padding: 0.75rem 1.25rem;
}
.btn-ghost:hover {
  background: #eaf7ef;
  text-decoration: none;
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.btn-sm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.btn-lg:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-icon:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.btn-icon:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-icon {
  padding: 17.5px 24px;
  gap: 0.5rem;
}
.btn-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2e23;
}
.form-label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-hint {
  font-size: 0.75rem;
  color: #8aab97;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-hint svg {
  width: 12px;
  height: 12px;
}

.field-icon-wrap {
  position: relative;
}

.field-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8aab97;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.field-icon svg {
  width: 16px;
  height: 16px;
}

.field-prefix {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  color: #4a6155;
  font-weight: 600;
  font-size: 0.875rem;
  pointer-events: none;
}

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #1a2e23;
  background: #ffffff;
  transition: all 150ms ease;
  outline: none;
}
.input::placeholder {
  color: #9CA3AF;
}
.input:hover {
  border-color: #bcd4c5;
}
.input:focus {
  border-color: #085C4B;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.12);
}
.input.error {
  border-color: #ef4444;
}
.input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.input-with-icon {
  padding-left: 2.5rem;
}

.select {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 2.5rem;
  border: 1.5px solid #d4e8db;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #4a6155;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238aab97' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: all 150ms ease;
}
.select:focus {
  border-color: #085C4B;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.12);
  color: #1a2e23;
}
.select:hover {
  border-color: #bcd4c5;
}

.select-with-icon {
  padding-left: 2.25rem;
}

.textarea {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid #d4e8db;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #1a2e23;
  background: #ffffff;
  resize: vertical;
  min-height: 200px;
  outline: none;
  transition: all 150ms ease;
  line-height: 1.7;
}
.textarea::placeholder {
  color: #8aab97;
}
.textarea:focus {
  border-color: #085C4B;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.12);
}

.checkbox-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-input {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #085C4B;
}

.checkbox-label {
  font-size: 0.875rem;
  color: #4a6155;
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label a {
  color: #085C4B;
  font-weight: 600;
  text-decoration: underline;
}
.checkbox-label a:hover {
  color: #145f2f;
}

.otp-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.otp-digit {
  width: 50px;
  height: 56px;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.625rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  text-align: center;
  color: #1a2e23;
  background: #ffffff;
  outline: none;
  transition: all 150ms ease;
}
.otp-digit:focus {
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.12);
}
.otp-digit.filled {
  border-color: #085C4B;
  color: #085C4B;
}

.file-upload {
  border: 2px dashed #d4e8db;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 150ms ease;
  background: #fafcfb;
}
.file-upload:hover {
  border-color: #085C4B;
  background: #eaf7ef;
}

.file-upload-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  color: #8aab97;
}

.file-upload-title {
  font-weight: 600;
  color: #4a6155;
  margin-bottom: 0.25rem;
}

.file-upload-subtitle {
  font-size: 0.875rem;
  color: #8aab97;
  margin-bottom: 1rem;
}

.file-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.file-upload-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.file-upload-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.file-upload-btn {
  background: linear-gradient(135deg, #085C4B 0%, #45746B 100%);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.file-upload-hint {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #8aab97;
}

.word-count {
  font-size: 0.75rem;
  color: #8aab97;
  text-align: right;
  margin-top: 0.25rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 575px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(26, 122, 60, 0.08), 0 1px 2px rgba(26, 122, 60, 0.04);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 122, 60, 0.1), 0 2px 6px rgba(26, 122, 60, 0.06);
}

.step-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(26, 122, 60, 0.08), 0 1px 2px rgba(26, 122, 60, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  transition: all 250ms ease;
  position: relative;
  border: none;
}
.step-card:hover {
  border-color: #085C4B;
  background: #eaf7ef;
  box-shadow: 0 4px 16px rgba(26, 122, 60, 0.1), 0 2px 6px rgba(26, 122, 60, 0.06);
  transform: translateY(-4px);
}
.step-card:nth-child(1) {
  background: linear-gradient(135deg, #EEF2FF 0%, #FAF5FF 100%);
}
.step-card:nth-child(2) {
  background: linear-gradient(135deg, #FAF5FF 0%, #FDF2F8 100%);
}
.step-card:nth-child(3) {
  background: linear-gradient(135deg, #FDF2F8 0%, #FEF2F2 100%);
}
.step-card:nth-child(4) {
  background: linear-gradient(135deg, #FEF2F2 0%, #FFF7ED 100%);
}
@media (max-width: 767px) {
  .step-card {
    padding-top: 3rem;
  }
}

.step-card-num {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #085C4B 0%, #45746B 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26, 122, 60, 0.1), 0 2px 6px rgba(26, 122, 60, 0.06);
  position: absolute;
  top: -20px;
  left: -20px;
}
@media (max-width: 767px) {
  .step-card-num {
    left: 5%;
  }
}

.step-card-icon {
  font-size: 2rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #085C4B 0%, #239356 100%);
  border-radius: 1rem;
}

.step-card-title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e23;
}

.step-card-text {
  font-size: 0.875rem;
  color: #4a6155;
  line-height: 1.6;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #fafcfb;
  transition: all 150ms ease;
}
.feature-item:hover {
  background: #eaf7ef;
  border-color: rgba(8, 92, 75, 0.2);
}

.feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1a2e23;
  margin-bottom: 2px;
}

.feature-text {
  font-size: 0.75rem;
  color: #8aab97;
}

.prize-card {
  background: linear-gradient(160deg, #145f2f 0%, #1a7a3c 50%, #2ca05a 100%);
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  height: 360px;
  display: flex;
}
.prize-card img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.prize-card-desc {
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: auto;
}
.prize-card-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.prize-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  z-index: 2;
  position: relative;
}
.prize-card p {
  font-size: 1rem;
  color: rgba(17, 24, 39, 0.85);
  line-height: 1.6;
  z-index: 2;
  position: relative;
}

.prize-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}
.prize-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.prize-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.rewards-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(26, 122, 60, 0.08), 0 1px 2px rgba(26, 122, 60, 0.04);
  background: linear-gradient(135deg, #0F694E 0%, #208B55 100%);
}
.rewards-card-name {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rewards-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}
.rewards-card p {
  font-size: 1rem;
  color: #ffffff;
}
.rewards-card ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.rewards-card ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #ffffff;
}
.rewards-card ul li span:first-child {
  font-size: 1.25rem;
}

.stat-value {
  font-family: "Inter", sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #085C4B 0%, #45746B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #4a6155;
  font-weight: 500;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-green {
  background: #eaf7ef;
  color: #085C4B;
}

.badge-amber {
  background: #fff3cc;
  color: rgb(163.5, 112.40625, 0);
}

.badge-gray {
  background: #f1f5f2;
  color: #8aab97;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: currentColor;
  flex-shrink: 0;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-badge svg {
  width: 24px;
  height: 24px;
}
.icon-badge.green {
  background: #eaf7ef;
  color: #085C4B;
}
.icon-badge.amber {
  background: #fff3cc;
  color: #f0a500;
}
.icon-badge.blue {
  background: #e0f2fe;
  color: #0284c7;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 50;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal {
  background: #ffffff;
  border-radius: 2rem;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(26, 122, 60, 0.18), 0 8px 24px rgba(26, 122, 60, 0.1);
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  background: linear-gradient(160deg, #145f2f 0%, #1a7a3c 50%, #2ca05a 100%);
  border-radius: 2rem 2rem 0 0;
  padding: 1.5rem 2rem;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .modal-header {
    padding: 1.25rem 1.5rem;
  }
}

.modal-title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .modal-title {
    font-size: 1.25rem;
  }
}

.modal-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms ease;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.modal-close svg {
  width: 14px;
  height: 14px;
  color: #ffffff;
}

.modal-body {
  padding: 1.5rem 2rem;
}
@media (max-width: 767px) {
  .modal-body {
    padding: 1.25rem 1.5rem;
  }
}

.modal-footer {
  padding: 0 2rem 1.5rem;
}
@media (max-width: 767px) {
  .modal-footer {
    padding: 0 1.5rem 1.25rem;
  }
}

.steps-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.6);
  transition: all 250ms ease;
}
.step-circle.done {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
}
.step-circle.done svg {
  width: 14px;
  height: 14px;
  color: #085C4B;
}
.step-circle.current {
  background: #ffffff;
  border-color: #ffffff;
  color: #085C4B;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.step-line.done::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
}

.step-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: auto;
  white-space: nowrap;
}

.alert {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}

.alert-success {
  background: #eaf7ef;
  border: 1px solid rgba(8, 92, 75, 0.2);
}

.alert-info {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
}

.alert-warning {
  background: #fff3cc;
  border: 1px solid rgba(240, 165, 0, 0.3);
}

.alert-privacy {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
}

.alert-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.alert-icon.success {
  color: #22c55e;
}
.alert-icon.info {
  color: #0284c7;
}
.alert-icon.warning {
  color: #f0a500;
}
.alert-icon.privacy {
  color: #6366f1;
}

.alert-title {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.alert-title.success {
  color: #145f2f;
}
.alert-title.info {
  color: #0c4a6e;
}

.alert-text {
  font-size: 0.875rem;
  color: #4a6155;
  line-height: 1.5;
}
.alert-text a {
  color: #085C4B;
  text-decoration: underline;
}
.alert-text span {
  font-weight: 700;
  color: #085C4B;
}

.modal-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
}

.modal-back {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #8aab97;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
  transition: color 150ms ease;
}
.modal-back svg {
  width: 15px;
  height: 15px;
}
.modal-back:hover {
  color: #1a2e23;
  text-decoration: none;
}

.modal-security {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #8aab97;
}
.modal-security svg {
  width: 13px;
  height: 13px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  transition: all 250ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.submit-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 92, 75, 0.25);
}
.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: linear-gradient(135deg, #085C4B 0%, #45746B 100%);
  color: #ffffff;
  border-radius: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(26, 122, 60, 0.1), 0 2px 6px rgba(26, 122, 60, 0.06);
  gap: 0.5rem;
}
.submit-btn svg {
  width: 18px;
  height: 18px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(26, 122, 60, 0.18), 0 8px 24px rgba(26, 122, 60, 0.1);
}
.submit-btn:active {
  transform: translateY(0);
}

.resend {
  text-align: center;
  margin: 0.75rem 0;
  font-size: 0.875rem;
  color: #4a6155;
}

.resend-timer {
  color: #085C4B;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.resend-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.5rem auto 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #8aab97;
  background: #fafcfb;
  border: 1px solid #d4e8db;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  cursor: not-allowed;
  opacity: 0.5;
  transition: all 150ms ease;
}
.resend-btn.active {
  color: #085C4B;
  cursor: pointer;
  opacity: 1;
}
.resend-btn.active:hover {
  background: #eaf7ef;
  border-color: #085C4B;
}
.resend-btn svg {
  width: 14px;
  height: 14px;
}

.footer {
  background: #111827;
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 6rem;
}

.footer-grid {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 767px) {
  .footer-grid {
    padding-inline: 1rem;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  text-decoration: none;
}
.footer-logo img {
  width: 183px;
  height: 49px;
  object-fit: contain;
}
.footer-logo-partner {
  margin-top: 1.5rem;
}
.footer-logo-partner img {
  width: 183px;
  height: 90px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #ffffff;
}

.footer-desc {
  font-size: 1rem;
  color: #9CA3AF;
  line-height: 1.7;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #c8ddd1;
  transition: all 150ms ease;
  text-decoration: none;
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-social:hover {
  background: #085C4B;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.footer-link {
  font-size: 1rem;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 150ms ease;
}
.footer-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  color: #9CA3AF;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #2ca05a;
  margin-top: 2px;
}
.footer-contact-item a {
  color: #9CA3AF;
  text-decoration: none;
}
.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
}

.footer-bottom {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 767px) {
  .footer-bottom {
    padding-inline: 1rem;
  }
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
}
@media (max-width: 575px) {
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.footer-copy {
  font-size: 0.875rem;
  color: #9CA3AF;
}

.hero {
  background: linear-gradient(135deg, #EEF2FF 0%, #FFFFFF 50%, #FAF5FF 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero {
    padding: 4rem 0 3rem;
  }
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 767px) {
  .hero-inner {
    padding-inline: 1rem;
  }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #E0E7FF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #085C4B;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: 3.75rem;
  font-weight: 900;
  background: linear-gradient(90deg, #085C4B 0%, #34B55D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.hero-title span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 2.25rem;
}
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-title span {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-title span {
    font-size: 1.5rem;
  }
}

.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1F2937;
}

.hero-desc {
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 150%;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
@media (max-width: 991px) {
  .hero-desc {
    max-width: 100%;
  }
}

.hero-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}
@media (max-width: 991px) {
  .hero-cta {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .hero-cta {
    flex-direction: column;
  }
}

.hero-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 991px) {
  .hero-stats {
    justify-content: center;
  }
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
}
@media (max-width: 991px) {
  .hero-stat {
    align-items: center;
  }
}

.hero-stat-value {
  font-family: "Inter", sans-serif;
  font-size: 1.875rem;
  font-weight: 900;
  color: #085C4B;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #4B5563;
}

.hero-image {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .hero-image {
    display: none;
  }
}
.hero-image img {
  max-width: 100%;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(26, 122, 60, 0.18), 0 8px 24px rgba(26, 122, 60, 0.1);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 991px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.steps-cta-bar {
  text-align: center;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg, #E0E7FF 0%, #F3E8FF 100%);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1.5rem;
  width: fit-content;
}
.steps-cta-bar p {
  font-size: 0.875rem;
  color: #312E81;
  font-weight: 600;
}

.course-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 991px) {
  .course-inner {
    grid-template-columns: 1fr;
  }
}

.course-image-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 122, 60, 0.18), 0 8px 24px rgba(26, 122, 60, 0.1);
  position: relative;
}
.course-image-wrap img {
  width: 100%;
  display: block;
}

.course-image-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
}

.progress-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: #085C4B;
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 8px;
  background: #d4e8db;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #085C4B 0%, #45746B 100%);
  border-radius: 9999px;
  width: 100%;
  animation: progressLoad 1.5s ease-out;
}
@keyframes progressLoad {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.course-features {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.learns-box {
  background: linear-gradient(90deg, #085C4B 0%, #34B55D 100%);
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem;
}

.learns-title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.learns-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.learns-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.learns-item::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  color: #ffffff;
}

.contest-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 767px) {
  .contest-preview-grid {
    grid-template-columns: 1fr;
  }
}

.contest-criteria {
  background: linear-gradient(135deg, #FEFCE8 0%, #FFF7ED 100%);
  border: 2px solid #FEF08A;
  padding: 2.5rem;
  border-radius: 1.25rem;
}
.contest-criteria-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.criteria-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.75rem;
}

.criterion-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(26, 122, 60, 0.08), 0 1px 2px rgba(26, 122, 60, 0.04);
  transition: all 150ms ease;
}
.criterion-item:hover {
  border-color: #085C4B;
  transform: translateX(4px);
}

.criterion-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.criterion-title {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.criterion-text {
  font-size: 0.75rem;
  color: #8aab97;
}

.prize-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.25rem;
}

.cta-section {
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #FACC15 0%, #FB923C 50%, #F87171 100%);
  border-radius: 2rem;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 5rem 0;
}
@media (max-width: 767px) {
  .cta-section {
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
  }
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-title {
  font-family: "Inter", sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cta-title {
    font-size: 1.875rem;
  }
}

.cta-desc {
  font-size: 1.125rem;
  color: #4B5563;
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.contest-hero {
  background: linear-gradient(135deg, #085C4B 0%, #1B8253 50%, #31AE5C 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.contest-hero-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 767px) {
  .contest-hero-inner {
    padding-inline: 1rem;
  }
}
.contest-hero-inner {
  position: relative;
  z-index: 1;
}
.contest-hero-inner .hero-eyebrow {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
}

.contest-icon {
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .contest-icon {
    display: none;
  }
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb svg {
  width: 14px;
  height: 14px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #ffffff;
}

.contest-title {
  font-family: "Inter", sans-serif;
  font-size: 3.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 600px;
}
@media (max-width: 767px) {
  .contest-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 575px) {
  .contest-title {
    font-size: 1.875rem;
  }
}

.contest-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}

.contest-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 1.5rem;
}
@media (max-width: 575px) {
  .contest-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contest-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contest-stat-value {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  display: block;
}

.contest-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.contest-meta {
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(26, 122, 60, 0.08), 0 1px 2px rgba(26, 122, 60, 0.04);
}

.contest-meta-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 767px) {
  .contest-meta-inner {
    padding-inline: 1rem;
  }
}
.contest-meta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.contest-meta-inner .meta-card {
  padding: 24px;
  border-radius: 1rem;
  border: 1px solid #000;
}
.contest-meta-inner .meta-card:nth-child(1) {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  border: 2px solid #BBF7D0;
}
.contest-meta-inner .meta-card:nth-child(1) .meta-label {
  color: #16A34A;
}
.contest-meta-inner .meta-card:nth-child(2) {
  background: linear-gradient(135deg, #EFF6FF 0%, #EEF2FF 100%);
  border: 2px solid #BFDBFE;
}
.contest-meta-inner .meta-card:nth-child(2) .meta-label {
  color: #2563EB;
}
.contest-meta-inner .meta-card:nth-child(3) {
  background: linear-gradient(135deg, #FAF5FF 0%, #FDF2F8 100%);
  border: 2px solid #239257;
}
.contest-meta-inner .meta-card:nth-child(3) .meta-label {
  color: #9333EA;
}
@media (max-width: 767px) {
  .contest-meta-inner {
    grid-template-columns: 1fr;
  }
}

.meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
  color: #4a6155;
}
.meta-item img {
  width: 48px;
  height: 48px;
}
.meta-item svg {
  width: 16px;
  height: 16px;
  color: #085C4B;
}

.meta-title {
  display: flex;
  flex-direction: column;
}
.meta-title span:nth-child(1) {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 900;
}

.meta-desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: #4B5563;
  margin-top: 1rem;
}

.meta-label {
  font-weight: 700;
  color: #1a2e23;
}

.meta-divider {
  width: 1px;
  height: 20px;
  background: #d4e8db;
}
@media (max-width: 575px) {
  .meta-divider {
    display: none;
  }
}

.contest-rules .section-title {
  font-size: 2rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .rules-grid {
    grid-template-columns: 1fr;
  }
}

.rule-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(26, 122, 60, 0.08), 0 1px 2px rgba(26, 122, 60, 0.04);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.25rem;
  transition: all 250ms ease;
}
.rule-card:hover {
  border-color: #085C4B;
  box-shadow: 0 10px 40px rgba(26, 122, 60, 0.14), 0 4px 12px rgba(26, 122, 60, 0.08);
  transform: translateY(-3px);
}
.rule-card:nth-child(1) .rule-tag {
  color: #16A34A;
}
.rule-card:nth-child(2) .rule-tag {
  color: #085C4B;
}

.rule-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 1.5rem;
  background: #eaf7ef;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex: 0 0 auto;
}

.rule-card-title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.875rem;
}

.rule-card-text {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.rule-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.rule-tag img {
  width: 16px;
  height: 16px;
}
.rule-tag.green {
  background: #eaf7ef;
  color: #085C4B;
}
.rule-tag.amber {
  background: #fff3cc;
  color: #b87000;
}

.criteria {
  margin-top: 3rem;
  padding: 32px;
  border: 2px solid #34B35E;
  border-radius: 1rem;
  background-color: #ffffff;
}
.criteria-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.criteria-star {
  width: 30px;
  height: 30px;
}
.criteria-title {
  font-size: 1.5rem;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 1199px) {
  .criteria-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .criteria-grid {
    grid-template-columns: 1fr;
  }
}

.criteria-card {
  text-align: center;
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.criteria-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0.75rem;
}

.criteria-card-title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.criteria-card-text {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
}

.prize-section {
  background: linear-gradient(135deg, #147450 0%, #228F56 50%, #2DA75B 100%);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}
.prize-section::before {
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
}
.prize-section::after {
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
}

.prize-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .prize-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.prize-title {
  font-family: "Inter", sans-serif;
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.prize-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.prize-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
}
.prize-items li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.prize-items li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  color: #ffffff;
}

.prize-info {
  padding: 32px;
}

.prize-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.prize-name img {
  width: 64px;
  height: 64px;
}

.prize-image {
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 122, 60, 0.18), 0 8px 24px rgba(26, 122, 60, 0.1);
  height: 100%;
}
.prize-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.submission-form {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(26, 122, 60, 0.08), 0 1px 2px rgba(26, 122, 60, 0.04);
  max-width: 760px;
  margin-inline: auto;
  box-shadow: 0 10px 40px rgba(26, 122, 60, 0.14), 0 4px 12px rgba(26, 122, 60, 0.08);
}
@media (max-width: 767px) {
  .submission-form {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}

.submission-fields {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.submission-notice {
  background: linear-gradient(135deg, #EFF6FF 0%, #EEF2FF 100%);
  border: 2px solid #BFDBFE;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.submission-notice-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.submission-notice ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.25rem;
}
.submission-notice ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #111827;
}
.submission-notice ul li::before {
  content: "•";
  font-weight: 700;
  margin-top: 1px;
}

.timeline {
  position: relative;
  max-width: 80%;
  margin-inline: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(135deg, #085C4B 0%, #45746B 100%);
  opacity: 0.3;
}
@media (max-width: 767px) {
  .timeline {
    max-width: 100%;
  }
}

.timeline-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  padding-bottom: 2rem;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item:nth-child(1) .timeline-content {
  border-color: #BBF7D0;
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
}
.timeline-item:nth-child(2) .timeline-content {
  border-color: #BFDBFE;
  background: linear-gradient(135deg, #EFF6FF 0%, #EEF2FF 100%);
}
.timeline-item:nth-child(3) .timeline-content {
  border-color: #239257;
  background: linear-gradient(135deg, #FAF5FF 0%, #FDF2F8 100%);
}
.timeline-item:nth-child(4) .timeline-content {
  border-color: #9DD38B;
  background: linear-gradient(135deg, #FFFBEB 0%, #FFF7ED 100%);
}
.timeline-item:nth-child(5) .timeline-content {
  border-color: #FECACA;
  background: linear-gradient(135deg, #FEF2F2 0%, #FDF2F8 100%);
}

.timeline-dot {
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.timeline-content {
  flex: 1;
  padding-top: 4px;
  border: 2px solid;
  border-radius: 1rem;
  padding: 24px;
}

.timeline-date {
  font-size: 1rem;
  color: #4B5563;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.25rem;
}

.timeline-text {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.6;
}

.faq-list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.5rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(26, 122, 60, 0.08), 0 1px 2px rgba(26, 122, 60, 0.04);
  cursor: pointer;
  transition: all 150ms ease;
}
.faq-item:hover {
  border-color: #085C4B;
  box-shadow: 0 4px 16px rgba(26, 122, 60, 0.1), 0 2px 6px rgba(26, 122, 60, 0.06);
}
.faq-item.open {
  border-color: #085C4B;
  background: #eaf7ef;
}

.faq-question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  color: #085C4B;
  flex-shrink: 0;
  transition: transform 150ms ease;
}
.faq-question.open svg {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 0.875rem;
  color: #4a6155;
  line-height: 1.7;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E5E7EB;
  display: none;
}
.faq-answer.visible {
  display: block;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.register-page {
  min-height: 100vh;
  background: linear-gradient(145deg, #eaf7ef 0%, #f0faf4 40%, #fafcfb 100%);
  padding: 3rem 0 4rem;
}
@media (max-width: 767px) {
  .register-page {
    padding: 2rem 0 3rem;
  }
}

.register-wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (max-width: 767px) {
  .register-wrap {
    padding-inline: 1rem;
  }
}
.register-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px);
}

.register-card {
  background: #ffffff;
  border-radius: 2rem;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 20px 60px rgba(26, 122, 60, 0.18), 0 8px 24px rgba(26, 122, 60, 0.1);
  overflow: hidden;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 575px) {
  .register-card {
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(26, 122, 60, 0.14), 0 4px 12px rgba(26, 122, 60, 0.08);
  }
}
.register-card.wide {
  max-width: 1000px;
}

.register-header {
  background: linear-gradient(160deg, #145f2f 0%, #1a7a3c 50%, #2ca05a 100%);
  padding: 1.5rem 2rem;
  position: relative;
}
@media (max-width: 575px) {
  .register-header {
    padding: 1.25rem 1.5rem;
  }
}

.register-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms ease;
}
.register-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.register-close svg {
  width: 14px;
  height: 14px;
  color: #ffffff;
}

.register-title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
@media (max-width: 575px) {
  .register-title {
    font-size: 1.25rem;
  }
}

.register-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.register-body {
  padding: 1.5rem 2rem;
}
@media (max-width: 575px) {
  .register-body {
    padding: 1.25rem 1.5rem;
  }
}

.register-footer {
  padding: 0 2rem 1.5rem;
}
@media (max-width: 575px) {
  .register-footer {
    padding: 0 1.5rem 1.25rem;
  }
}

.register-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
}

.register-back {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6B7280;
  text-decoration: none;
  background: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: color 150ms ease;
}
.register-back svg {
  width: 15px;
  height: 15px;
}
.register-back:hover {
  color: #1a2e23;
  text-decoration: none;
}

.register-security {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #6B7280;
}
.register-security svg {
  width: 13px;
  height: 13px;
}
