/* ===== 区块样式 ===== */

/* ---------- Header ---------- */
.site-header {
  min-height: var(--header-height);
  background: var(--color-white);
  box-shadow: 0 1px 3px rgba(16, 24, 40, .06);
  position: relative;
  z-index: 20;
}

.site-nav {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.39vw, 20px);
  white-space: nowrap;
}

.brand strong {
  font-size: clamp(20px, 1.94vw, 28px);
  font-weight: bold;
  line-height: clamp(28px, 2.59vw, 37px);
  color: #1F2937;
}

.brand-logo {
  width: clamp(56px, 5.56vw, 80px);
  height: clamp(56px, 5.56vw, 80px);
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--color-dark-secondary);
  font-size: var(--text-base);
}

.nav-links a {
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  padding: 8px 0;
}

.nav-links a.active {
  color: #1677ff;
  font-weight: bold;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 3px;
  left: 50%;
  bottom: -4px;
  border-radius: 2px;
  /* background: #1677ff; */
  transform: translateX(-50%);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--color-line);
  background: var(--color-white);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-dark-secondary);
}

/* ---------- Hero ---------- */
.mastergo-hero {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-home {
  width: 100%;
  background: #edf6ff;
  padding-bottom: clamp(50px, 5.66vw, 82px);
  overflow: visible;
}

/* 通栏内层：100%宽，flex 左右布局 */
.hero-home-inner {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: clamp(430px, 54vw, 781px);
  max-height: 781px;
}

.hero-home-copy {
  flex: 4;
  min-width: 0;
  z-index: 2;
  padding-left: clamp(16px, 13.89vw, 200px);
}

.hero-home-copy h1 {
  margin: 0;
  color: #1F2937;
  font-size: clamp(34px, 4.03vw, 58px);
  font-weight: bold;
  line-height: clamp(48px, 5.42vw, 78px);
}

.hero-home-copy h1 span {
  display: block;
}

.hero-home-copy p {
  margin: clamp(22px, 3.47vw, 50px) 0 0 0;
  color: #4B5563;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: 400;
  line-height: clamp(28px, 2.78vw, 40px);
  max-width: 653px;
}

.hero-home-art {
  flex: 6;
  min-width: 0;
  max-width: 1095px;
  align-self: center;
  overflow: hidden;
}

.hero-home-art img {
  width: 100%;
  aspect-ratio: 1095 / 720;
  object-fit: cover;
  object-position: right center;
}

.hero-text {
  position: absolute;
  z-index: 2;
  top: 40%;
  left: max(24px, calc((100% - 1440px) / 2));
  width: clamp(300px, 45.14vw, 650px);
  transform: translateY(-40%);
}

.hero-text strong {
  display: block;
  margin-bottom: clamp(12px, 1.39vw, 20px);
  color: var(--color-blue);
  font-size: clamp(34px, 4.03vw, 58px);
  font-weight: 700;
  line-height: clamp(40px, 5.42vw, 78px);
}

.hero-text h1 {
  margin: 0 0 clamp(14px, 1.67vw, 24px);
  font-size: clamp(28px, 3.33vw, 48px);
  line-height: clamp(36px, 4.72vw, 68px);
  font-weight: 700;
}

.hero-text p {
  width: clamp(280px, 43.06vw, 620px);
  margin: 0;
  color: #5f6b7b;
  font-size: clamp(14px, 1.39vw, 20px);
  font-weight: normal;
  line-height: clamp(24px, 2.78vw, 40px);
}

.hero-text-light {
  color: var(--color-white);
}

.hero-text-light strong {
  color: var(--color-white);
}

.hero-text-light p {
  color: rgba(255, 255, 255, .76);
}

.hero-consultant .hero-text strong {
  color: #111827;
}

.hero-consultant .hero-text h1 {
  color: #111827;
}

.hero-consultant .hero-text p {
  color: #111827;
}

/* AI/顾问页 Hero 背景图 */
.hero-ai {
  background: url("../img/ai-hero.png") center/cover no-repeat;
}

.hero-consultant {
  background: url("../img/consultant-hero.jpg") center/cover no-repeat;
}

/* ---------- Metric Strip ---------- */
.metric-strip {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: min(calc(100% - 48px), var(--max-width));
  height: clamp(100px, 11.32vw, 163px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-white);
  border-radius: 5px;
  box-shadow: 0px 4px 10px 0px #EDF6FF;
  z-index: 3;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  font-size: var(--text-lg);
}

.metric:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(3px, 0.35vw, 5px);
  height: clamp(36px, 4.93vw, 71px);
  background: url("../image/index/DIV@3x.png") center/100% 100% no-repeat;
}

.metric strong {
  font-size: clamp(20px, 2.08vw, 30px);
  font-weight: 600;
  line-height: clamp(20px, 1.94vw, 28px);
  color: #0E0E0E;
}

.metric-icon {
  width: clamp(28px, 2.78vw, 40px);
  height: clamp(28px, 2.78vw, 40px);
  flex: 0 0 clamp(28px, 2.78vw, 40px);
  display: grid;
  place-items: center;
}

.metric-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Section Common ---------- */
.section-block {
  width: 100%;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: var(--text-4xl);
  line-height: 50px;
  font-weight: 700;
  color: var(--color-ink);
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-blue), #38bdf8);
}

.section-subtitle {
  margin: var(--space-md) 0 0;
  text-align: center;
  color: #4B5563;
  font-size: 20px;
  font-weight: normal;
  line-height: 20px;
}

/* ---------- Home Services ---------- */
.home-services {
  background: #ffffff;
  padding: clamp(100px, 9.72vw, 140px) 0 78px;
}

.service-panel {
  margin-top: 50px;
  display: grid;
  grid-template-columns: clamp(280px, 26.39vw, 380px) 1fr;
  gap: clamp(12px, 1.67vw, 24px);
}

.service-nav {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: clamp(4px, 0.49vw, 7px);
}

.service-choice {
  border: 0;
  padding: 20px;
  color: var(--color-dark-secondary);
  background: #EBF4FE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-choice img {
  width: clamp(40px, 4.86vw, 70px);
  height: clamp(40px, 4.86vw, 70px);
  object-fit: contain;
  margin-bottom: 10px;
}

.service-choice strong {
  font-size: var(--text-xl);
  line-height: 30px;
}

.service-choice span {
  margin-top: 3px;
  color: #4B5563;
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
  text-align: center;
}

.service-choice.active {
  color: var(--color-white);
  background: linear-gradient(90deg, #1e40af 0%, #0084ff 100%), #D8D8D8;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.3);
}

.service-choice.active span {
  color: #ffffff;
}

.service-art {
  min-width: 0;
  height: clamp(400px, 49.38vw, 711px);
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
}

.service-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy {
  position: absolute;
  z-index: 2;
  top: clamp(16px, 2.64vw, 38px);
  left: clamp(16px, 3.33vw, 48px);
  width: clamp(200px, 29.17vw, 420px);
  color: var(--color-white);
}

.service-copy strong {
  display: block;
  font-size: clamp(20px, 2.36vw, 34px);
  line-height: clamp(28px, 3.19vw, 46px);
  font-weight: 700;
}

.service-copy p {
  margin: var(--space-md) 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: clamp(22px, 2.08vw, 30px);
}

.service-tags {
  position: absolute;
  left: clamp(12px, 2.5vw, 36px);
  right: clamp(12px, 2.5vw, 36px);
  bottom: clamp(12px, 1.67vw, 24px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(6px, 0.83vw, 12px);
}

.service-tags span {
  min-height: clamp(36px, 4.17vw, 60px);
  padding: clamp(4px, 0.56vw, 8px) clamp(6px, 0.83vw, 12px);
  color: var(--color-white);
  text-align: center;
  font-size: clamp(10px, 0.83vw, 12px);
  line-height: clamp(14px, 1.25vw, 18px);
  background: rgba(21, 112, 220, .86);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AI定制：突出整张背景图，隐藏大标题与底部标签 */
.service-art[data-current="ai"] .service-copy strong {
  display: none;
}
.service-art[data-current="ai"] .service-copy {
  top: clamp(12px, 1.94vw, 28px);
  left: clamp(12px, 2.5vw, 36px);
  right: clamp(12px, 2.5vw, 36px);
  width: auto;
  max-width: 988px;
}
.service-art[data-current="ai"] .service-copy p {
  margin: 0;
  color: #EFF7FE;
  font-size: clamp(16px, 1.67vw, 24px);
  line-height: clamp(24px, 2.71vw, 39px);
}
.service-art[data-current="ai"] .service-tags {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: transparent;
}
.service-art[data-current="ai"] .service-tags span {
  position: absolute;
  width: clamp(100px, 14.38vw, 207px);
  height: clamp(36px, 4.31vw, 62px);
  padding: 0;
  min-height: 0;
  font-size: clamp(14px, 1.67vw, 24px);
  font-weight: 400;
  line-height: clamp(22px, 2.71vw, 39px);
  color: #EFF7FE;
  background: rgba(20, 101, 219, .5);
  border: 0;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.service-art[data-current="ai"] .service-tags span:nth-child(1) {
  width: clamp(110px, 16.04vw, 231px);
  background: rgba(234, 179, 8, .2);
  top: 22%;
  left: 39%;
}
.service-art[data-current="ai"] .service-tags span:nth-child(2) {
  width: clamp(100px, 14.38vw, 207px);
  background: rgba(147, 51, 234, .2);
  top: 55%;
  right: 3%;
}
.service-art[data-current="ai"] .service-tags span:nth-child(3) {
  width: clamp(100px, 14.38vw, 207px);
  background: rgba(20, 101, 219, .5);
  bottom: 7%;
  left: 21%;
}

/* 软件顾问：隐藏大标题，左侧 3 个蓝底胶囊垂直排列 */
.service-art[data-current="consulting"] .service-copy strong {
  display: none;
}
.service-art[data-current="consulting"] .service-copy {
  top: clamp(12px, 1.94vw, 28px);
  left: clamp(12px, 2.5vw, 36px);
  right: clamp(12px, 2.5vw, 36px);
  width: auto;
  max-width: 988px;
}
.service-art[data-current="consulting"] .service-copy p {
  margin: 0;
  color: #EFF7FE;
  font-size: clamp(16px, 1.67vw, 24px);
  line-height: clamp(24px, 2.71vw, 39px);
}
.service-art[data-current="consulting"] .service-tags {
  top: clamp(80px, 9.72vw, 140px);
  left: clamp(12px, 2.5vw, 36px);
  right: auto;
  bottom: auto;
  width: clamp(140px, 17.99vw, 259px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.97vw, 14px);
  background: transparent;
}
.service-art[data-current="consulting"] .service-tags span {
  min-height: 0;
  height: clamp(36px, 4.31vw, 62px);
  padding: 0 clamp(12px, 1.53vw, 22px);
  font-size: clamp(14px, 1.67vw, 24px);
  font-weight: 400;
  line-height: clamp(22px, 2.71vw, 39px);
  color: #EFF7FE;
  background: rgba(20, 101, 219, .5);
  border: 0;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AI落地：隐藏大标题，3 个标签底部横排 */
.service-art[data-current="delivery"] .service-copy strong {
  display: none;
}
.service-art[data-current="delivery"] .service-copy {
  top: clamp(12px, 1.94vw, 28px);
  left: clamp(12px, 2.5vw, 36px);
  right: clamp(12px, 2.5vw, 36px);
  width: auto;
  max-width: 988px;
}
.service-art[data-current="delivery"] .service-copy p {
  margin: 0;
  color: #EFF7FE;
  font-size: clamp(16px, 1.67vw, 24px);
  line-height: clamp(24px, 2.71vw, 39px);
}
.service-art[data-current="delivery"] .service-tags {
  top: auto;
  left: clamp(12px, 2.5vw, 36px);
  right: clamp(12px, 2.5vw, 36px);
  bottom: clamp(12px, 1.94vw, 28px);
  display: flex;
  flex-direction: row;
  gap: clamp(8px, 0.97vw, 14px);
  background: transparent;
}
.service-art[data-current="delivery"] .service-tags span {
  flex: 1;
  min-height: 0;
  height: clamp(36px, 4.31vw, 62px);
  padding: 0 clamp(12px, 1.53vw, 22px);
  font-size: clamp(14px, 1.67vw, 24px);
  font-weight: 400;
  line-height: clamp(22px, 2.71vw, 39px);
  color: #EFF7FE;
  background: rgba(20, 101, 219, .5);
  border: 0;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Solutions ---------- */
.solution-section {
  padding: 72px 0;
  background: var(--color-soft);
}

.solution-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-grid article {
  height: 320px;
  padding: 24px 18px 18px;
  text-align: center;
  background: var(--color-white);
  box-shadow: 0 8px 26px rgba(31, 65, 108, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.solution-icon {
  width: 107px;
  height: 107px;
  margin: 0 auto var(--space-md);
  display: grid;
  place-items: center;
}

.solution-icon svg,
.solution-icon img {
  width: 107px;
  height: 107px;
  display: block;
}

.solution-icon img {
  object-fit: contain;
}

.solution-grid h3 {
  margin: 0 0 8px;
  font-size: var(--text-lg);
  line-height: 26px;
}

.solution-grid p {
  margin: 0;
  font-size: 19px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  color: #4B5563;
  margin-top: 10px;
}

/* ---------- Cases ---------- */
.case-section {
  padding: 76px 0;
}

.case-grid {
  margin-top: var(--space-2xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.case-grid article {
  border: 1px solid #e8edf3;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.case-grid article > img {
  width: 100%;
  height: 226px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.case-grid article > div {
  padding: 22px 24px;
}

.case-grid h3 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 600;
  line-height: 28px;
  color: #1F2937;
}

.case-grid p {
  margin: 0 0 15px;
  color: #4B5563;
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
}

.case-grid span {
  display: inline-block;
  padding: 4px 12px;
  background: #DBEAFE;
  border-radius: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #2563EB;
  text-align: center;
}

/* ---------- About ---------- */
.about-section {
  padding: 74px 0;
  background: var(--color-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr clamp(280px, 44.31vw, 638px);
  align-items: center;
  gap: clamp(24px, 4.72vw, 68px);
}

.about-copy h2 {
  margin: 0 0 clamp(12px, 1.53vw, 22px);
  font-size: clamp(24px, 2.36vw, 34px);
  line-height: clamp(32px, 3.19vw, 46px);
}

.about-copy h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: clamp(8px, 0.83vw, 12px) 0 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-blue), #38bdf8);
}

.about-copy > p {
  margin: 0;
  color: #4B5563;
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: normal;
  line-height: clamp(28px, 3.33vw, 48px);
}

.about-values {
  margin-top: clamp(20px, 2.08vw, 30px);
  display: flex;
  gap: clamp(16px, 2.5vw, 36px);
}

.about-values span {
  width: clamp(120px, 13.89vw, 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.49vw, 7px);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.about-values span:nth-child(1) {
  animation-delay: 0s;
}

.about-values span:nth-child(2) {
  animation-delay: 0.5s;
}

.about-values span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.about-values strong {
  font-size: clamp(18px, 1.94vw, 28px);
  font-weight: 600;
  line-height: clamp(18px, 1.67vw, 24px);
  color: #1F2937;
}

.about-values small {
  margin-top: clamp(8px, 0.9vw, 13px);
  font-size: clamp(14px, 1.39vw, 20px);
  font-weight: normal;
  line-height: clamp(16px, 1.39vw, 20px);
  text-align: center;
  color: #4B5563;
}

.about-values img {
  width: clamp(60px, 7.29vw, 105px);
  height: clamp(60px, 7.29vw, 105px);
  object-fit: contain;
}

.about-visual {
  width: 100%;
  aspect-ratio: 638 / 504;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  justify-self: end;
}

/* ---------- Contact Banner ---------- */
.contact-banner {
  min-height: clamp(250px, 27.01vw, 389px);
  padding: 80px var(--space-lg);
  color: var(--color-white);
  text-align: center;
  background: var(--color-dark) url("../img/cta-earth.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-banner h2 {
  margin: 0 0 var(--space-md);
  font-size: 34px;
  line-height: 46px;
}

.contact-banner p {
  margin: clamp(8px, 0.83vw, 16px) 0 0;
  color: #DBEAFE;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: normal;
  line-height: clamp(24px, 1.46vw, 28px);
  text-align: center;
}

.contact-banner-action {
  margin-top: var(--space-lg);
  min-width: 188px;
  height: 54px;
  padding: 0 28px;
  border-radius: 27px;
  color: #154cd3;
  background: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(17, 74, 176, .18);
}

/* ---------- Footer ---------- */
.site-footer {
  color: rgba(255, 255, 255, .68);
  background: #06142d;
}

.footer-content {
  padding: clamp(50px, 6.11vw, 88px) 0;
  display: grid;
  grid-template-columns: 1.48fr 1fr 1fr 1.4fr;
  gap: clamp(24px, 3.89vw, 56px);
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-brand strong {
  color: #FFFFFF;
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: bold;
  line-height: 1;
}

.footer-logo {
  width: clamp(36px, 3.47vw, 50px);
  height: clamp(36px, 3.47vw, 50px);
  object-fit: contain;
  vertical-align: middle;
  margin-right: clamp(6px, 0.69vw, 10px);
}

.footer-brand p {
  width: clamp(200px, 23.61vw, 340px);
  margin: clamp(12px, 1.39vw, 20px) 0 0;
  font-size: clamp(14px, 1.3vw, 18.67px);
  font-weight: normal;
  line-height: clamp(20px, 1.85vw, 26.67px);
  color: #9CA3AF;
}

.site-footer h3 {
  margin: 0 0 clamp(12px, 1.39vw, 20px);
  color: #FFFFFF;
  font-size: clamp(16px, 1.48vw, 21.33px);
  font-weight: 600;
  line-height: clamp(24px, 2.22vw, 32px);
}

.site-footer a,
.site-footer span {
  display: block;
  margin: clamp(6px, 0.69vw, 10px) 0;
  font-size: clamp(14px, 1.3vw, 18.67px);
  font-weight: normal;
  line-height: clamp(20px, 1.85vw, 26.67px);
  color: #9CA3AF;
}

.site-footer span img {
  width: clamp(14px, 1.39vw, 20px);
  height: clamp(14px, 1.39vw, 20px);
  object-fit: contain;
  vertical-align: middle;
  margin-right: clamp(4px, 0.56vw, 8px);
  flex-shrink: 0;
}

.footer-content > div:last-child span {
  display: flex;
  align-items: center;
}

.copyright {
  padding: clamp(20px, 2.5vw, 36px) 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  font-size: clamp(11px, 0.9vw, 13px);
  white-space: nowrap;
}

.copyright a {
  font-size: inherit;
  display: inline;
}

/* ---------- AI Page ---------- */
.ai-features {
  padding: 70px 0;
  background: rgba(219, 234, 254, 0.31)
}

.feature-mosaic {
  margin-top: clamp(24px, 3.33vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.25vw, 18px);
  align-items: center;
}

.feature-mosaic > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  clip-path: inset(0 0 18% 0);
}

.feature-mosaic > div {
  padding: clamp(10px, 1.39vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-mosaic h3 {
  margin: 0 0 clamp(6px, 0.69vw, 10px);
  font-size: clamp(18px, 1.94vw, 28px);
  font-weight: 600;
  line-height: clamp(24px, 2.59vw, 37.33px);
  text-align: center;
  color: #1F2937;
}

.feature-mosaic p {
  margin: 0;
  color: #4B5563;
  font-size: clamp(14px, 1.39vw, 20px);
  font-weight: normal;
  line-height: clamp(22px, 2.22vw, 32px);
  text-align: center;
}

.ai-advantages {
  padding: 68px 0;
  background: var(--color-white);
}

.three-cards {
  margin-top: clamp(24px, 3.06vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.08vw, 30px);
}

.three-cards article {
  padding: clamp(20px, 2.64vw, 38px);
  border-radius: 10.67px;
}

.three-cards article:nth-child(1) {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(139deg, #eff6ff -1%, #ffffff 101%);
}

.three-cards article:nth-child(2) {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(139deg, #f0fdf4 -1%, #ffffff 101%);
}

.three-cards article:nth-child(3) {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(139deg, #faf5ff -1%, #ffffff 101%);
}

.three-cards h3 {
  margin: 0 0 clamp(10px, 1.11vw, 16px);
  font-size: clamp(18px, 1.85vw, 26.67px);
  font-weight: 600;
  line-height: clamp(24px, 2.59vw, 37.33px);
  color: #1F2937;
}

.three-cards div {
  margin: 0 0 clamp(10px, 1.11vw, 16px);
  font-size: clamp(15px, 1.48vw, 21.33px);
  font-weight: normal;
  line-height: clamp(22px, 2.22vw, 32px);
  color: #4B5563;
}

.three-cards ul {
  margin: 0;
  padding: 0;
  color: #4B5563;
  font-size: clamp(14px, 1.3vw, 18.67px);
  font-weight: normal;
  line-height: clamp(20px, 1.85vw, 26.67px);
  list-style: none;
}

.three-cards li {
  padding-left: clamp(18px, 1.81vw, 26px);
  position: relative;
  margin-bottom: clamp(4px, 0.56vw, 8px);
}

.three-cards li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(12px, 1.11vw, 16px);
  height: clamp(8px, 0.76vw, 11px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.three-cards article:nth-child(1) li::before {
  background-image: url("../image/ai/gou1.png");
  width: clamp(15px, 1.46vw, 21px);
  height: clamp(10px, 0.97vw, 14px);
}

.three-cards article:nth-child(1) li {
  padding-left: clamp(20px, 1.94vw, 28px);
}

.three-cards article:nth-child(2) li::before {
  background-image: url("../image/ai/gou2.png");
}

.three-cards article:nth-child(3) li::before {
  background-image: url("../image/ai/gou3.png");
}

.flow-section {
  padding: clamp(40px, 4.72vw, 68px) 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(90deg, #eff7fe 0%, #edf3ff 48%, #eef1fe 100%);
}

.flow-section .section-subtitle {
  font-size: clamp(16px, 1.67vw, 24px);
  font-weight: normal;
  line-height: clamp(22px, 2.22vw, 32px);
  text-align: center;
  color: #4B5563;
}

.flow-section img {
  width: 100%;
  max-width: 1264px;
  margin: clamp(20px, 2.92vw, 42px) auto 0;
  object-fit: contain;
}

.scene-section {
  padding: clamp(40px, 4.86vw, 70px) 0;
}

.scene-grid {
  margin-top: clamp(24px, 3.33vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.5vw, 36px);
}

.scene-grid article {
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.scene-grid article:nth-child(1) { animation-delay: 0s; }
.scene-grid article:nth-child(2) { animation-delay: 0.5s; }
.scene-grid article:nth-child(3) { animation-delay: 1s; }
.scene-grid article:nth-child(4) { animation-delay: 1.5s; }

.scene-grid img {
  width: clamp(100px, 14.58vw, 210px);
  height: clamp(100px, 14.58vw, 210px);
  margin: 0 auto clamp(10px, 1.39vw, 20px);
  object-fit: contain;
}

.scene-grid h3 {
  margin: 0 0 clamp(4px, 0.56vw, 8px);
  font-size: clamp(18px, 1.94vw, 28px);
  font-weight: 600;
  line-height: clamp(24px, 2.59vw, 37.33px);
  text-align: center;
  color: #1F2937;
}

.scene-grid p {
  margin: 0;
  color: #4B5563;
  font-size: clamp(14px, 1.39vw, 20px);
  font-weight: normal;
  line-height: clamp(18px, 1.85vw, 26.67px);
  text-align: center;
}

/* ---------- Consultant Page ---------- */
.consultant-advantages {
  padding: 72px 0;
  background: #FCFDFF;
}

.consultant-advantages .container > div {
  margin-top: clamp(16px, 1.67vw, 24px);
  margin-bottom: clamp(40px, 4.17vw, 60px);
  font-size: clamp(16px, 1.39vw, 20px);
  font-weight: normal;
  line-height: clamp(24px, 1.94vw, 28px);
  text-align: center;
  color: #4B5563;
}

.consult-image-cards {
  margin-top: clamp(60px, 4.17vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.consult-image-cards article {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
}

.consult-image-cards article > img {
  width: 100%;
  height: clamp(356px, 38.19vw, 550px);
  object-fit: cover;
}

.consult-image-cards div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: clamp(180px, 18.13vw, 261px);
  height: clamp(82px, 8.26vw, 119px);
  padding: clamp(10px, 1.04vw, 15px);
  background: rgba(252, 253, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.consult-image-cards h3 {
  margin: 0;
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: 600;
  line-height: clamp(22px, 1.94vw, 28px);
  color: #111827;
}

.consult-image-cards p {
  margin: clamp(4px, 0.42vw, 6px) 0 0;
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: normal;
  line-height: clamp(22px, 2.08vw, 30px);
  color: #4B5563;
  text-align: left;
}

.consultant-services {
  padding: clamp(40px, 4.69vw, 90px);
  padding-left: clamp(24px, 10.42vw, 200px);
  background: #FFFFFF;
  min-height: clamp(400px, 43.75vw, 840px);
  display: flex;
  align-items: center;
  position: relative;
}

.consultant-service-layout {
  display: grid;
  grid-template-columns: clamp(280px, 28.44vw, 546px) 1fr;
  gap: clamp(20px, 4.69vw, 90px);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.consultant-service-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

.consultant-service-text {
  position: relative;
  z-index: 1;
}

.consultant-services-img {
  width: clamp(280px, 28.44vw, 546px);
  height: clamp(100px, 10.52vw, 202px);
  object-fit: contain;
  position: absolute;
  left: 0px;
  bottom: clamp(10px, 1.56vw, 30px);
  transform: translateY(clamp(10px, 2.08vw, 40px));
  z-index: 0;
}

.consultant-service-left h2 {
  margin: 0 0 clamp(8px, 0.83vw, 16px);
  font-size: clamp(20px, 1.88vw, 36px);
  font-weight: bold;
  line-height: clamp(24px, 2.08vw, 40px);
  color: #111827;
}

.consultant-service-left p {
  margin: 0;
  font-size: clamp(12px, 1.04vw, 20px);
  font-weight: normal;
  line-height: clamp(18px, 1.46vw, 28px);
  color: #4B5563;
}

.consultant-map {
  display: flex;
  gap: clamp(10px, 1.82vw, 35px);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.consultant-map-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(300px, 31.25vw, 600px);
  left: 29.7%;
  right: 0;
  background: #F4F8FE;
  border-radius: 150px 0 0 0;
  z-index: 0;
}

.map-col {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.13vw, 60px);
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
}

.map-col-2 {
  padding-top: clamp(20px, 4.17vw, 80px);
}

.map-col-3 {
  padding-bottom: clamp(20px, 4.17vw, 80px);
}

.consultant-map article {
  width: clamp(150px, 15.63vw, 300px);
  height: clamp(150px, 16.15vw, 310px);
  padding: clamp(12px, 1.67vw, 32px) clamp(8px, 1.04vw, 20px);
  text-align: center;
  background: var(--color-white);
  border: 1px solid #2563EB;
  border-radius: 32px;
  box-shadow: 0 8px 24px rgba(39, 81, 130, .05);
}

.consultant-map img {
  width: clamp(36px, 3.75vw, 72px);
  height: clamp(36px, 3.75vw, 72px);
  margin: 0 auto clamp(8px, 0.94vw, 18px);
  object-fit: contain;
}

.consultant-map h3 {
  margin: 0 0 clamp(6px, 0.52vw, 10px);
  font-size: clamp(18px, 1.56vw, 30px);
  color: #111827;
  font-weight: 600;
}

.consultant-map p {
  margin: 0;
  font-weight: 400;
  font-size: clamp(12px, 1.04vw, 20px);
  color: #4B5563;
  line-height: clamp(18px, 1.56vw, 30px);
}

.solution-lifecycle {
  padding: clamp(40px, 4.06vw, 78px) 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(90deg, #eff7fe 0%, #edf3ff 48%, #eef1fe 100%);
}

.solution-lifecycle .section-subtitle {
  line-height: clamp(24px, 1.46vw, 28px);
}

.lifecycle-grid {
  margin-top: clamp(30px, 2.71vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.35vw, 26px);
}

.lifecycle-grid article {
  padding: clamp(20px, 1.98vw, 38px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.001), rgba(0, 0, 0, 0.001)), #FFFFFF;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  height: clamp(160px, 11.46vw, 220px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lifecycle-grid img {
  width: clamp(48px, 3.33vw, 64px);
  height: clamp(48px, 3.33vw, 64px);
  object-fit: contain;
  margin-bottom: clamp(12px, 1.04vw, 20px);
}

.lifecycle-grid h3 {
  margin: 0 0 clamp(6px, 0.52vw, 10px);
  font-size: clamp(22px, 1.56vw, 30px);
  font-weight: 600;
  line-height: clamp(22px, 1.46vw, 28px);
  color: #111827;
}

.lifecycle-grid p {
  margin: 0;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: normal;
  line-height: clamp(20px, 1.25vw, 24px);
  color: #4B5563;
}

.consultant-process {
  padding: clamp(40px, 4.27vw, 82px) 0;
}

.consultant-process .section-subtitle {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: normal;
  line-height: clamp(24px, 1.64vw, 31.5px);
  color: #4B5563;
}

.process-grid {
  margin-top: clamp(30px, 3.23vw, 62px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.56vw, 30px);
}

.process-grid article {
  height: clamp(180px, 13.8vw, 265px);
  padding: clamp(20px, 2.5vw, 48px) clamp(16px, 2.08vw, 40px);
  border: 1px solid var(--color-line);
  border-radius: 13px;
  background: #F9FAFB;
}

.process-grid b {
  display: block;
  color: #111827;
  font-size: clamp(16px, 1.17vw, 22.5px);
  font-weight: 600;
  line-height: clamp(24px, 1.64vw, 31.5px);
}

.process-grid h3 {
  margin: clamp(10px, 0.83vw, 16px) 0 clamp(8px, 0.73vw, 14px);
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: normal;
  line-height: clamp(22px, 1.41vw, 27px);
  color: #4B5563;
}

.process-grid p {
  margin: 0;
  color: #4B5563;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: normal;
  line-height: clamp(22px, 1.41vw, 27px);
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.42vw, 8px);
}

.process-grid p img {
  width: clamp(12px, 0.83vw, 16px);
  height: clamp(9px, 0.58vw, 11px);
  object-fit: contain;
  flex-shrink: 0;
}

/* ===== 响应式 ===== */

/* 平板 (≥768px) */
@media (min-width: 768px) {
  .hero-ai,
  .hero-consultant {
    min-height: 840px;
  }
}

/* 桌面 (≥1200px) */
@media (min-width: 1200px) {
  .page-home .site-header,
  .page-home .design-frame,
  .page-home .site-footer {
    min-width: 1200px;
  }
}

/* 平板及以下 (≤1100px) */
@media (max-width: 1100px) {
  .site-header,
  .site-nav {
    min-height: 72px;
  }

  .nav-links {
    position: fixed;
    z-index: 30;
    inset: 72px 0 0;
    height: auto;
    padding: var(--space-lg);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--color-white);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .nav-links a.active::after {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-ai,
  .hero-consultant {
    aspect-ratio: 1920 / 840;
  }

  .service-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult-image-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .consult-image-cards div {
    width: clamp(160px, 20vw, 220px);
    height: clamp(70px, 9vw, 100px);
    padding: clamp(8px, 1.2vw, 14px);
  }

  .consult-image-cards h3 {
    font-size: clamp(16px, 2vw, 22px);
    line-height: clamp(20px, 2.5vw, 26px);
  }

  .consult-image-cards p {
    font-size: clamp(11px, 1.3vw, 14px);
    line-height: clamp(16px, 2vw, 22px);
  }

  .consultant-service-layout {
    grid-template-columns: 1fr;
  }

  .consultant-services {
    padding: clamp(40px, 5vw, 60px);
    min-height: auto;
  }

  .consultant-services-img {
    display: none;
  }

  .consultant-service-left {
    height: auto;
  }

  .consultant-map {
    flex-direction: column;
    gap: clamp(14px, 2vw, 20px);
  }

  .consultant-map article {
    width: 100%;
    height: auto;
    min-height: clamp(120px, 18vw, 180px);
  }

  .map-col {
    gap: clamp(14px, 2vw, 20px);
  }

  .map-col-2,
  .map-col-3 {
    padding: 0;
  }

  .consultant-map-bg {
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    transform: none;
    border-radius: 40px;
  }
}

/* 手机 (≤720px) */
@media (max-width: 720px) {
  .container,
  .site-nav {
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 17px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .mastergo-hero {
    min-height: auto;
    aspect-ratio: auto;
  }

  .hero-ai,
  .hero-consultant {
    min-height: 280px;
  }

  .hero-home-inner {
    flex-direction: column;
    min-height: auto;
    max-height: none;
    padding: 0;
  }

  .hero-home-copy {
    flex: none;
    width: 100%;
    padding: 72px var(--space-lg) 0;
  }

  .hero-home-art {
    flex: none;
    width: 100%;
  }

  .hero-home-art img {
    object-position: 76% center;
  }

  .hero-text {
    top: 58px;
    left: 22px;
    width: calc(100% - 44px);
    transform: none;
  }

  .hero-text strong {
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
  }

  .hero-text h1 {
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
  }

  .hero-text p {
    width: 50%;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }

  .hero-consultant::after {
    content: "";
    position: absolute;
    inset: 0;
  }

  .hero-ai::after {
    content: "";
    position: absolute;
    inset: 0;
  }

  .hero-home {
    padding-bottom: 0;
  }

  .metric-strip {
    position: static;
    transform: none;
    width: calc(100% - 32px);
    height: auto;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
  }

  .metric {
    min-height: 92px;
    padding: 12px 4px;
    gap: 7px;
    font-size: 13px;
  }

  .metric strong {
    font-size: 18px;
    line-height: 24px;
  }

  .metric-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .metric:nth-child(2)::after {
    display: none;
  }

  .section-title {
    font-size: 28px;
    line-height: 40px;
  }

  .section-subtitle {
    font-size: 16px;
    line-height: 22px;
  }

  .home-services,
  .solution-section,
  .case-section,
  .about-section,
  .ai-features,
  .ai-advantages,
  .solution-lifecycle,
  .consultant-process {
    padding: 56px 0;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-nav {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }

  .service-choice {
    min-height: 120px;
    padding: 12px 5px;
  }

  .service-choice strong {
    font-size: 15px;
    line-height: 22px;
  }

  .service-choice span {
    display: none;
  }

  .service-art {
    height: 280px;
    min-height: 0;
  }

  .service-art > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-copy {
    top: 18px;
    left: 16px;
    right: 16px;
    width: auto;
  }

  .service-copy strong {
    font-size: 22px;
    line-height: 30px;
  }

  .service-copy p {
    margin-top: 8px;
    font-size: var(--text-xs);
    line-height: 20px;
  }

  .service-tags {
    left: 8px;
    right: 8px;
    bottom: 14px;
    gap: 5px;
    grid-template-columns: 1fr 1fr;
  }

  .service-tags span {
    min-height: 44px;
    width: auto;
    padding: 8px 6px;
    font-size: 10px;
    line-height: 14px;
  }

  .service-art[data-current="ai"] .service-copy p,
  .service-art[data-current="consulting"] .service-copy p,
  .service-art[data-current="delivery"] .service-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .service-art[data-current="ai"] .service-copy,
  .service-art[data-current="consulting"] .service-copy,
  .service-art[data-current="delivery"] .service-copy {
    top: 18px;
    left: 16px;
    right: 16px;
  }

  .service-art[data-current="ai"] .service-tags span,
  .service-art[data-current="consulting"] .service-tags span,
  .service-art[data-current="delivery"] .service-tags span {
    font-size: 12px;
    line-height: 18px;
    height: 36px;
  }

  .service-art[data-current="ai"] .service-tags span {
    width: auto;
  }

  .service-art[data-current="consulting"] .service-tags {
    top: 90px;
    width: auto;
    right: 16px;
  }

  .service-art[data-current="consulting"] .service-tags span {
    height: 36px;
    padding: 0 12px;
  }

  .service-art[data-current="delivery"] .service-tags span {
    height: 36px;
    padding: 0 8px;
  }

  .solution-grid,
  .scene-grid,
  .lifecycle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .lifecycle-grid article {
    height: auto;
    width: auto;
    padding: clamp(20px, 3vw, 30px);
  }

  .lifecycle-grid img {
    width: clamp(36px, 5vw, 52px);
    height: clamp(36px, 5vw, 52px);
    margin-bottom: clamp(8px, 1.2vw, 14px);
  }

  .lifecycle-grid h3 {
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: clamp(22px, 2.5vw, 28px);
  }

  .lifecycle-grid p {
    font-size: clamp(13px, 1.6vw, 18px);
    line-height: clamp(18px, 2vw, 22px);
  }

  .solution-grid article {
    padding: 24px 12px;
  }

  .case-grid,
  .three-cards,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
  }

  .process-grid article {
    width: auto;
    height: auto;
    padding: clamp(20px, 3vw, 30px);
  }

  .process-grid b {
    font-size: clamp(14px, 1.8vw, 20px);
    line-height: clamp(20px, 2.2vw, 28px);
  }

  .process-grid h3 {
    font-size: clamp(13px, 1.6vw, 16px);
    line-height: clamp(18px, 2vw, 24px);
  }

  .process-grid p {
    font-size: clamp(12px, 1.4vw, 16px);
    line-height: clamp(18px, 2vw, 24px);
  }

  .process-grid p img {
    width: clamp(10px, 1.2vw, 14px);
    height: clamp(7px, 0.9vw, 10px);
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-values {
    gap: var(--space-md);
    justify-content: space-between;
  }

  .about-values span {
    width: auto;
    flex: 1;
  }

  .about-visual {
    width: 100%;
    height: auto;
  }

  .contact-banner {
    padding: 60px var(--space-lg);
  }

  .contact-banner h2 {
    font-size: 26px;
    line-height: 38px;
  }

  .contact-banner p {
    font-size: 15px;
    line-height: 25px;
  }

  .contact-banner-action {
    min-width: 164px;
    height: 46px;
    margin-top: 20px;
    font-size: var(--text-sm);
  }

  .footer-content {
    padding: 50px 0;
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    width: auto;
  }

  .feature-mosaic > div {
    padding: 16px 10px;
  }

  .flow-section img {
    width: 100%;
    height: auto;
  }

  .consult-image-cards {
    grid-template-columns: 1fr;
  }

  .consult-image-cards article > img {
    height: clamp(240px, 50vw, 360px);
  }

  .consult-image-cards div {
    width: 100%;
    height: auto;
    padding: clamp(12px, 2.5vw, 18px);
  }

  .consult-image-cards h3 {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: clamp(20px, 3.06vw, 26px);
  }

  .consult-image-cards p {
    font-size: clamp(13px, 1.94vw, 15px);
    line-height: clamp(18px, 2.78vw, 22px);
  }

  .consultant-map {
    flex-direction: column;
    gap: clamp(12px, 2vw, 16px);
  }

  .consultant-map article {
    width: 100%;
    height: auto;
    min-height: clamp(100px, 16vw, 140px);
  }

  .map-col {
    gap: clamp(12px, 2vw, 16px);
  }

  .map-col-2,
  .map-col-3 {
    padding: 0;
  }

  .consultant-map-bg {
    left: -20px;
    right: -20px;
    top: 0;
    bottom: 0;
    height: auto;
    transform: none;
    border-radius: 20px;
  }

  .consultant-services {
    padding: clamp(30px, 5vw, 50px) clamp(16px, 3vw, 24px);
    min-height: auto;
  }

  .consultant-services-img {
    display: none;
  }

  .consultant-service-left {
    height: auto;
  }

  .lifecycle-grid article {
    min-height: clamp(140px, 22vw, 180px);
    height: auto;
    width: auto;
    padding: clamp(16px, 3vw, 26px);
  }

  .lifecycle-grid img {
    width: clamp(40px, 6vw, 56px);
    height: clamp(40px, 6vw, 56px);
    margin-bottom: clamp(8px, 1.5vw, 14px);
  }

  .lifecycle-grid h3 {
    font-size: clamp(16px, 2.5vw, 22px);
    line-height: clamp(20px, 2.8vw, 26px);
  }

  .lifecycle-grid p {
    font-size: clamp(12px, 1.8vw, 16px);
    line-height: clamp(16px, 2.2vw, 20px);
  }

  .process-grid {
    gap: clamp(12px, 2vw, 18px);
  }

  .process-grid article {
    width: auto;
    height: auto;
    min-height: auto;
    padding: clamp(20px, 3vw, 28px);
  }

  .process-grid b {
    font-size: clamp(14px, 2vw, 18px);
    line-height: clamp(20px, 2.5vw, 26px);
  }

  .process-grid h3 {
    font-size: clamp(12px, 1.6vw, 15px);
    line-height: clamp(18px, 2vw, 22px);
  }

  .process-grid p {
    font-size: clamp(11px, 1.4vw, 14px);
    line-height: clamp(16px, 2vw, 20px);
  }

  .process-grid p img {
    width: clamp(10px, 1.2vw, 13px);
    height: clamp(7px, 0.9vw, 9px);
  }
}
