/* ===== SEEMEHIRE PAGE ===== */
main.seemehire-main {
  padding: 0;
  min-height: 0;
}

/* ===== SHARED SECTION TOKENS ===== */
.section {
  padding: 5rem 0;
}
.section--alt {
  background: var(--bg-light);
}
.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.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-title {
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: inherit;
  max-width: none;
}

.section-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: none;
  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 ===== */
.product-hero {
  background: var(--bg-dark) center / cover no-repeat;
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.6) 50%,
    rgba(15, 23, 42, 0.25) 100%
  );
  pointer-events: none;
}

.product-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.product-hero-logo {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1.75rem;
}

.product-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;
}

.product-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.product-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;
}

.product-hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ===== TWO-COLUMN FEATURE ROW ===== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-row--reverse .feature-visual {
  order: -1;
}

.feature-visual img {
  width: 100%;
  border-radius: 1rem;
  display: block;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.feature-text .section-title {
  margin-bottom: 1.25rem;
}
.feature-text .section-desc {
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -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;
}

/* ===== sMOA (DARK SECTION) ===== */
.smoa-section {
  background: var(--bg-dark);
  color: #fff;
}

.smoa-section .eyebrow {
  color: var(--primary);
}
.smoa-section .section-title {
  color: #fff;
}
.smoa-section .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.smoa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.smoa-visual img {
  width: 100%;
  border-radius: 1rem;
  display: block;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4);
}

.smoa-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.smoa-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.smoa-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -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;
}

/* ===== EMPLOYER BRANDING FEATURES ===== */
.branding-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.branding-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1.125rem;
  padding: 1.75rem;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.branding-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-0.1rem);
}

.branding-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(
    135deg,
    rgba(246, 153, 50, 0.1),
    rgba(246, 97, 50, 0.06)
  );
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.branding-card-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.branding-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.branding-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: none;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
  background: var(--bg-dark) center / cover no-repeat;
  position: relative;
  color: #fff;
}

.support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  pointer-events: none;
}

.support-section .container {
  position: relative;
  z-index: 1;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.support-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.support-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: linear-gradient(
    135deg,
    rgba(246, 153, 50, 0.25),
    rgba(246, 97, 50, 0.15)
  );
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.support-card-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.support-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.support-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: none;
}

/* ===== 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;
}

/* ===== 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 .eyebrow {
  margin-bottom: 1rem;
}
.cta-banner .section-title {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner .section-desc {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 2.5rem;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

@media (max-width: 48em) {
  .section {
    padding: 3.5rem 0;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }

  .feature-row,
  .smoa-inner,
  .support-grid,
  .branding-grid {
    grid-template-columns: 1fr;
  }

  .feature-row--reverse .feature-visual {
    order: 0;
  }

  .product-hero-actions,
  .cta-banner-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner-actions {
    align-items: center;
  }
}

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