.custom-logo-link img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.sod-wp-hero {
  position: relative;
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #03090e;
}

.sod-wp-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.sod-wp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 26, .9) 0%, rgba(32, 64, 96, .62) 45%, rgba(6, 17, 26, .18) 100%),
    linear-gradient(to top, rgba(3, 9, 14, .94) 0%, rgba(3, 9, 14, .5) 50%, rgba(3, 9, 14, .08) 100%);
}

.sod-wp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: var(--sp-16);
  padding: var(--sp-8);
}

.sod-wp-hero h1,
.sod-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  margin-bottom: var(--sp-6);
}

.sod-wp-hero p,
.sod-page-hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.18rem;
  line-height: 1.75;
  max-width: 620px;
}

.sod-page-hero {
  background: linear-gradient(135deg, #03090e 0%, #0b1c2b 100%);
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--border-default);
}

.sod-content {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.sod-content h2,
.sod-content h3 {
  color: var(--text-primary);
  font-family: var(--font-display);
  margin: var(--sp-8) 0 var(--sp-3);
}

.sod-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
}

.sod-support-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
}

.sod-support-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.68) saturate(1.05);
}

.sod-support-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 9, 14, .84), rgba(3, 9, 14, .18));
}

.sod-support-card div {
  position: relative;
  z-index: 2;
}

.sod-support-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--sp-2);
}

.sod-contact-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
}

body::before {
  display: none;
}

@media (max-width: 760px) {
  .sod-wp-hero {
    min-height: auto;
    padding: var(--sp-24) 0 var(--sp-12);
  }

  .sod-wp-hero img {
    object-position: center;
  }

  .sod-wp-hero::after {
    background: linear-gradient(to top, rgba(3, 9, 14, .96), rgba(32, 64, 96, .54), rgba(3, 9, 14, .16));
  }

  .sod-wp-hero-content {
    margin: var(--sp-20) 0 0;
    padding: 0 var(--sp-5) 0 0;
  }

  .sod-wp-hero h1,
  .sod-page-hero h1 {
    font-size: clamp(2rem, 13vw, 3rem);
    letter-spacing: 0;
  }

  .sod-wp-hero p,
  .sod-page-hero p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .sod-page-hero {
    padding: var(--sp-12) 0;
  }

  .sod-support-grid {
    grid-template-columns: 1fr;
  }
}
