/* ===== SEEMEMARKETPLACE PAGE ===== */
main.marketplace-main {
  padding: 0;
  min-height: 0;
}

.section {
  padding: 5rem 0;
}
.section--alt {
  background: var(--bg-light);
}
.section--dark {
  background: var(--bg-dark);
  color: #fff;
}
.section--dark .section-title {
  color: #fff;
}
.section--dark .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section--dark .eyebrow {
  color: var(--primary);
}

.section-title {
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
  max-width: none;
}

.section-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.btn-lg {
  padding: 0.8125rem 1.875rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.btn-ghost-white {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #fff !important;
}

.fade-up {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ===== HERO ===== */
.marketplace-hero {
  background: var(--bg-dark) center / cover no-repeat;
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.marketplace-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.6) 55%,
    rgba(15, 23, 42, 0.25) 100%
  );
  pointer-events: none;
}
.marketplace-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 54rem;
}
.marketplace-hero-logo {
  height: 3rem;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
  object-fit: contain;
  object-position: left;
}
.marketplace-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: #fff;
  max-width: none;
}
.marketplace-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.marketplace-hero-sub {
  font-size: clamp(1rem, 1.75vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}
.marketplace-hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== FEATURE CARDS ===== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.feature-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
  transform: translateY(-0.2rem);
}
.feature-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(246, 153, 50, 0.18),
    rgba(246, 97, 50, 0.1)
  );
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-card-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}
.feature-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.feature-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.category-tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 3rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: default;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.category-tile:hover {
  background: linear-gradient(
    135deg,
    rgba(246, 153, 50, 0.12),
    rgba(246, 97, 50, 0.07)
  );
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-0.125rem);
}
.category-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--primary);
}
.category-tile-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.category-tile-label {
  line-height: 1.2;
}

/* ===== STEPS ===== */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
.step-number {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary, #f66132)
  );
  color: #fff;
  font-size: 1.375rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(246, 153, 50, 0.35);
}
.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 18rem;
  margin: 0 auto;
}
.step-connector {
  flex: 0 0 auto;
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(246, 97, 50, 0.4));
  margin-top: 2.25rem;
  border-radius: 1px;
}

/* ===== FOR ORGANISATIONS ===== */
.org-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.org-text .section-title {
  margin-bottom: 1.25rem;
}
.org-text .section-desc {
  margin-bottom: 1.75rem;
}

.org-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}
.org-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}
.org-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.05rem;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary, #f66132)
  );
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.org-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.org-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.org-stat:last-child {
  grid-column: 1 / -1;
}
.org-stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.org-stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 80% at 50% 0%,
      rgba(246, 153, 50, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 60% at 80% 100%,
      rgba(246, 97, 50, 0.15) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner .section-title {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 2.5rem;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 80em) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 64em) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .org-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .org-visual {
    grid-template-columns: repeat(3, 1fr);
  }
  .org-stat:last-child {
    grid-column: auto;
  }
}
@media (max-width: 56em) {
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .step {
    padding: 0;
    max-width: 26rem;
    width: 100%;
  }
  .step-connector {
    width: 2px;
    height: 2.5rem;
    background: linear-gradient(180deg, var(--primary), rgba(246, 97, 50, 0.4));
    margin: 0;
  }
}
@media (max-width: 48em) {
  .section {
    padding: 3.5rem 0;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .feature-cards {
    grid-template-columns: 1fr;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .marketplace-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-banner-actions {
    flex-direction: column;
  }
}
@media (max-width: 30em) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .org-visual {
    grid-template-columns: 1fr;
  }
  .org-stat:last-child {
    grid-column: auto;
  }
}

/* ===== BEST PAIRED WITH ===== */
.paired-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.paired-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.paired-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-0.125rem); }
.paired-icon { height: 3rem; width: auto; object-fit: contain; object-position: left; display: block; }
.paired-name { font-size: 1.0625rem; font-weight: 800; color: var(--text); }
.paired-name-see { color: var(--text); }
.paired-name-me  { color: var(--primary); }
.paired-desc { font-size: 0.875rem; line-height: 1.7; color: var(--text-muted); max-width: none; flex: 1; }
.paired-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.paired-link:hover { gap: 0.5rem; }

@media (max-width: 64em) {
  .paired-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 30em) {
  .paired-grid { grid-template-columns: 1fr; }
}
