*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f3f4f6;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding-inline: 1.5rem;
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 70vh;
  color: #f9fafb;
  /*background-color: #020617;*/
  background-image: url("hero.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.8) 0, rgba(15, 23, 42, 0.6) 40%, transparent 75%);*/
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 1.75rem 3.5rem;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-block: 0.25rem;
  color: #e5e7eb;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #facc15, #22c55e);
  transition: width 0.2s ease-out;
}

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

.btn-nav {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-weight: 500;
}

.hero-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 3rem;
}

.overline {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: #a5b4fc;
  margin-bottom: 0.75rem;
}

header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  max-width: 32rem;
  color: #e5e7eb;
  font-size: 0.98rem;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.detail {
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.4);
  min-width: 150px;
}

.detail .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.detail .value {
  font-weight: 600;
  font-size: 0.95rem;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(to right, #f97316, #eab308);
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 18px 40px rgba(251, 146, 60, 0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, filter 0.15s ease-out;
}

.primary-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 16px 35px rgba(251, 146, 60, 0.5);
}

.submit-btn {
  width: 100%;
  max-width: 260px;
}

.submit-btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Category selection cards (EOI) */
.category-cards {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.category-prompt {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1rem;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding: 1.75rem 1.25rem;
  border-radius: 1.25rem;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-align: center;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border-color: #c7d2fe;
  background: #fafbff;
}

.category-card[aria-pressed="true"] {
  border-color: #6366f1;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.25);
}

.category-card[data-category="food"][aria-pressed="true"] {
  border-color: #f97316;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.25);
}

.category-card[data-category="fashion"][aria-pressed="true"] {
  border-color: #a855f7;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.25);
}

.category-card[data-category="art"][aria-pressed="true"] {
  border-color: #0ea5e9;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.25);
}

.category-card-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.category-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.category-card-desc {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.category-change-hint {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 1rem 0 0;
}

.category-form-panel {
  display: block;
}

/* EOI modal */
.eoi-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.eoi-modal.eoi-modal-open {
  opacity: 1;
  visibility: visible;
}

.eoi-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}

.eoi-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 780px;
  max-height: calc(100vh - 2rem);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.eoi-modal-open .eoi-modal-dialog {
  transform: scale(1);
}

.eoi-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.eoi-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.eoi-modal-close {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.eoi-modal-close:hover {
  background: #e5e7eb;
  color: #111827;
}

.eoi-modal-body {
  overflow-y: auto;
  padding: 1.5rem;
  flex: 1 1 auto;
}

.eoi-modal-body .form-grid {
  margin-top: 0;
}

/* Multi-step form */
.eoi-step {
  display: none;
}

.eoi-step.eoi-step-visible {
  display: block;
}

.eoi-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.eoi-step-indicator {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.eoi-step-buttons {
  display: flex;
  gap: 0.75rem;
}

.eoi-step-back.btn-secondary,
.eoi-step-next.primary-cta {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.eoi-step-back.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.eoi-step-back.btn-secondary:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}

.eoi-step-nav .eoi-step-next[data-step-last] {
  display: none !important;
}

body.eoi-modal-body-open {
  overflow: hidden;
}

/* Toasts */
.toast-container {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1100;
  pointer-events: none;
  align-items: center;
}

@media (min-width: 480px) {
  .toast-container {
    left: auto;
    right: 1.25rem;
    align-items: flex-end;
    max-width: 360px;
  }
}

.toast {
  padding: 0.85rem 1.1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  animation: toast-in 0.3s ease;
  border: 1px solid transparent;
}

.toast--info {
  background: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}

.toast--success {
  background: #ecfdf5;
  color: #166534;
  border-color: #bbf7d0;
}

.toast--error {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toast.toast-out {
  animation: toast-out 0.25s ease forwards;
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(-0.25rem);
  }
}

.section {
  padding-block: 3.25rem;
}

.bg-light {
  background-color: #f9fafb;
}

.section h2 {
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
  color: #0f172a;
}

.section-intro {
  max-width: 44rem;
  margin: 0 0 2rem;
  color: #4b5563;
  font-size: 0.98rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: #111827;
}

.card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.requirements-grid ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.requirements-grid li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.6rem;
  color: #374151;
  font-size: 0.95rem;
}

.requirements-grid li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.6rem;
  color: #22c55e;
}

.note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #6b7280;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  background: #eff6ff;
  border: 1px dashed #bfdbfe;
}

.form-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.75rem;
}

.form-section {
  background: #ffffff;
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  border: 1px solid #e5e7eb;
}

.form-section h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #111827;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #111827;
}

.field-hint {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="file"],
textarea {
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, background-color 0.15s ease-out;
  background-color: #f9fafb;
}

input[type="file"] {
  padding: 0.4rem 0.6rem;
  background-color: #ffffff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.35);
  background-color: #ffffff;
}

.field-error {
  border-color: #f97316 !important;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.4) !important;
}

textarea {
  resize: vertical;
}

.choice-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.choice-row.wrap {
  flex-wrap: wrap;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #f9fafb;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background-color 0.15s ease-out, border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.choice input {
  accent-color: #4f46e5;
}

.choice:hover {
  background-color: #eef2ff;
  border-color: #a5b4fc;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.small-print {
  font-size: 0.8rem;
  color: #6b7280;
}

.alert {
  padding: 0.7rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.alert-error {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.alert-success {
  background-color: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.site-footer {
  padding-block: 1.4rem;
  background-color: #020617;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-note {
  color: #6b7280;
}

@media (max-width: 768px) {
  .hero {
    background-image: url("mobile.jpeg");
  }
  .category-cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-block: 1.25rem 2.5rem;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-main {
    margin-top: 2.25rem;
  }

  .detail {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .hero-main {
    margin-top: 1.75rem;
  }

  .nav-links {
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .section {
    padding-block: 2.5rem;
  }

  .declaration-section {
    margin-top: 1.5rem;
    padding: 1.25rem 1.25rem 1.35rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  }

  .declaration-section h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .declaration-section .field {
    margin-bottom: 0;
  }

  .declaration-section .choice {
    align-items: flex-start;
    width: 100%;
    border-radius: 0.9rem;
    padding: 0.8rem 0.9rem;
    background-color: #f9fafb;
    border-color: #e5e7eb;
  }

  .declaration-section .choice input {
    margin-top: 0.15rem;
  }

  .declaration-section .choice span {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f3f4f6;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding-inline: 1.5rem;
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 70vh;
  color: #f9fafb;
  /*background: radial-gradient(circle at top left, #38bdf8 0, #1d4ed8 40%, #020617 85%);*/
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(248, 250, 252, 0.08) 0, transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.55) 0, transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.4) 0, rgba(15, 23, 42, 0.4) 40%, transparent 95%);*/
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 1.75rem 3.5rem;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-block: 0.25rem;
  color: #e5e7eb;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #facc15, #22c55e);
  transition: width 0.2s ease-out;
}

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

.btn-nav {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-weight: 500;
}

.hero-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 3rem;
}

.overline {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: #a5b4fc;
  margin-bottom: 0.75rem;
}

header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  max-width: 32rem;
  color: #e5e7eb;
  font-size: 0.98rem;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.detail {
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.4);
  min-width: 150px;
}

.detail .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.detail .value {
  font-weight: 600;
  font-size: 0.95rem;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(to right, #f97316, #eab308);
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 18px 40px rgba(251, 146, 60, 0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, filter 0.15s ease-out;
}

.primary-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 16px 35px rgba(251, 146, 60, 0.5);
}

.submit-btn {
  width: 100%;
  max-width: 260px;
}

.section {
  padding-block: 3.25rem;
}

.bg-light {
  background-color: #f9fafb;
}

.section h2 {
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
  color: #0f172a;
}

.section-intro {
  max-width: 44rem;
  margin: 0 0 2rem;
  color: #4b5563;
  font-size: 0.98rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: #111827;
}

.card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.requirements-grid ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.requirements-grid li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.6rem;
  color: #374151;
  font-size: 0.95rem;
}

.requirements-grid li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.6rem;
  color: #22c55e;
}

.note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #6b7280;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  background: #eff6ff;
  border: 1px dashed #bfdbfe;
}

.form-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.75rem;
}

.form-section {
  background: #ffffff;
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  border: 1px solid #e5e7eb;
}

.form-section h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #111827;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #111827;
}

.field-hint {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="file"],
textarea {
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, background-color 0.15s ease-out;
  background-color: #f9fafb;
}

input[type="file"] {
  padding: 0.4rem 0.6rem;
  background-color: #ffffff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.35);
  background-color: #ffffff;
}

.field-error {
  border-color: #f97316 !important;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.4) !important;
}

textarea {
  resize: vertical;
}

.choice-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.choice-row.wrap {
  flex-wrap: wrap;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #f9fafb;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background-color 0.15s ease-out, border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.choice input {
  accent-color: #4f46e5;
}

.choice:hover {
  background-color: #eef2ff;
  border-color: #a5b4fc;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.small-print {
  font-size: 0.8rem;
  color: #6b7280;
}

.alert-container {
  margin-bottom: 1rem;
}

.alert {
  padding: 0.7rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.alert-error {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.alert-success {
  background-color: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.site-footer {
  padding-block: 1.4rem;
  background-color: #020617;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-note {
  color: #6b7280;
}

@media (max-width: 768px) {
  .hero {
    background-image: url("mobile.jpeg");
  }
  .category-cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-block: 1.25rem 2.5rem;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-main {
    margin-top: 2.25rem;
  }

  .detail {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .hero-main {
    margin-top: 1.75rem;
  }

  .nav-links {
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .section {
    padding-block: 2.5rem;
  }
}

