/* ================================================================
   SUANOVA New Design - Suanfeng1 (丰收一号) Page Styles
   ================================================================ */

/* Hero Section */
.suanfeng1-hero {
  position: relative;
  height: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  overflow: hidden;
}

.suanfeng1-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/index/zh-new/suanfeng1/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.suanfeng1-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,40,85,0) 16.822%, #002855 147.91%);
  z-index: 1;
}

.suanfeng1-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 160px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.suanfeng1-hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  background: rgba(100,204,201,0.4);
  border: 1px solid var(--teal, #64ccc9);
  border-radius: 82px;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal, #64ccc9);
  letter-spacing: 1px;
  line-height: 26px;
  width: fit-content;
}

.suanfeng1-hero-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.suanfeng1-hero-main h1 {
  font-size: 84px;
  font-weight: 900;
  line-height: 98px;
  color: var(--white);
  letter-spacing: 1.68px;
  margin: 0;
}

.suanfeng1-hero-sub {
  font-size: 24px;
  color: var(--white);
  line-height: 32px;
  font-weight: 400;
  max-width: 800px;
}

.suanfeng1-hero-sub p {
  margin: 0;
}

.suanfeng1-hero .suanfeng1-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  line-height: 26px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  transition: opacity 0.2s;
}

.suanfeng1-hero .suanfeng1-hero-link:hover {
  opacity: 0.9;
}

.suanfeng1-hero .suanfeng1-hero-link svg,
.suanfeng1-hero .suanfeng1-hero-link img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Partner Section (算丰服务) */
.suanfeng1-partner {
  background: var(--navy);
  padding: 82px 160px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  min-height: 750px;
  justify-content: center;
}

.suanfeng1-partner h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: var(--white);
  width: 100%;
}

.suanfeng1-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.suanfeng1-partner-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.suanfeng1-partner-card:hover {
  background: rgba(255,255,255,0.12);
}

.suanfeng1-partner-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--white);
  white-space: nowrap;
}

.suanfeng1-partner-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
  flex: 1;
}

.suanfeng1-partner-card .card-arrow {
  width: 42px;
  height: 42px;
  margin-top: 8px;
}

.suanfeng1-partner-card .card-arrow svg {
  width: 42px;
  height: 42px;
}

/* Responsive - 1440px */
@media (max-width: 1440px) {
  .suanfeng1-hero {
    height: 560px;
  }

  .suanfeng1-hero-content {
    padding: 0 80px;
  }

  .suanfeng1-hero-main h1 {
    font-size: 64px;
    line-height: 72px;
  }

  .suanfeng1-partner {
    padding: 64px 80px;
  }
}

/* Responsive - 1024px */
@media (max-width: 1024px) {
  .suanfeng1-hero {
    height: 500px;
  }

  .suanfeng1-hero-content {
    padding: 0 20px;
  }

  .suanfeng1-hero-tag {
    font-size: 16px;
    padding: 3px 12px;
  }

  .suanfeng1-hero-main h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .suanfeng1-hero-sub {
    font-size: 18px;
    line-height: 26px;
  }

  .suanfeng1-hero-main {
    gap: 20px;
  }

  .suanfeng1-partner {
    padding: 48px 20px;
  }

  .suanfeng1-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .suanfeng1-partner-card h3 {
    white-space: normal;
  }
}

/* Responsive - 768px */
@media (max-width: 768px) {
  .suanfeng1-hero {
    height: 480px;
  }

  .suanfeng1-hero-main h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .suanfeng1-hero-sub {
    font-size: 16px;
    line-height: 24px;
  }

  .suanfeng1-hero .suanfeng1-hero-link {
    font-size: 16px;
    padding: 6px 18px;
  }

  .suanfeng1-partner {
    min-height: auto;
  }

  .suanfeng1-partner-grid {
    grid-template-columns: 1fr;
  }
}
