.eternal-homepage-support-section {
  min-height: 435px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  padding: 2rem clamp(1rem, 2vw, 1.5rem) 2.5rem;
  background: linear-gradient(180deg, #f3eee6 0%, #efe8df 100%);
}
.homepage-native-support {
  width: min(100%, 1120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.homepage-native-support__logo {
  width: clamp(128px, 10vw, 170px);
  height: auto;
  opacity: 0.88;
  filter: drop-shadow(0 6px 14px rgba(30, 18, 12, 0.04));
}

.homepage-native-support__surface {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 1.8rem 2.5rem 1.9rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.97), rgba(249, 244, 237, 0.94));
  border: 1px solid rgba(32, 23, 19, 0.07);
  box-shadow: 0 20px 48px rgba(30, 18, 12, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  text-align: center;
}

.homepage-native-support__surface h1 {
  max-width: 24ch;
  margin: 0 auto 0.7rem;
  color: #201713;
  font-family: var(--font-body, "Outfit", sans-serif);
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.18;
  text-transform: none;
}

.homepage-native-support__surface p {
  max-width: 54ch;
  margin: 0 auto;
  color: rgba(32, 23, 19, 0.74);
  font-family: var(--font-body, "Outfit", sans-serif);
  font-size: clamp(13px, 0.88vw, 14px);
  font-weight: 400;
  line-height: 1.75;
}

.homepage-native-support__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.homepage-native-support__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.95rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 23, 19, 0.1);
  background: rgba(255, 254, 250, 0.78);
  box-shadow: 0 6px 14px rgba(30, 18, 12, 0.03);
  color: #201713;
  font-family: var(--font-body, "Outfit", sans-serif);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.homepage-native-support__links a:hover {
  transform: translateY(-1px);
  border-color: rgba(165, 120, 55, 0.28);
  background: rgba(255, 252, 245, 0.92);
  box-shadow: 0 8px 18px rgba(30, 18, 12, 0.05);
}

@media (max-width: 720px) {
  .eternal-homepage-support-section {
    min-height: 365px;
    padding: 1.2rem 0.75rem 1.5rem;
  }

  .homepage-native-support {
    gap: 0.55rem;
  }

  .homepage-native-support__logo {
    width: min(44vw, 150px);
  }

  .homepage-native-support__surface {
    max-width: 100%;
    padding: 1.2rem 0.95rem 1.25rem;
    border-radius: 1.05rem;
  }

  .homepage-native-support__surface h1 {
    font-size: 17px;
  }

  .homepage-native-support__surface p {
    font-size: 12px;
    line-height: 1.6;
  }

  .homepage-native-support__links {
    gap: 0.4rem;
    margin-top: 0.95rem;
  }

  .homepage-native-support__links a {
    min-height: 1.8rem;
    padding: 0.38rem 0.68rem;
    font-size: 10px;
    letter-spacing: 0.04em;
  }
}
