.spain-cloud-page {
  --cloud-primary: var(--color-primary, #1664ff);
  --cloud-primary-dark: var(--color-primary-dark, #0c4fd8);
  --cloud-title: var(--color-text, #1d2129);
  --cloud-muted: var(--color-muted, #717883);
  --cloud-border: var(--color-border, #e5eaf3);
  --cloud-soft: var(--color-soft, #f5f8ff);
  --cloud-white: #ffffff;
  --cloud-danger: #ef3340;
  --cloud-shadow: var(--shadow-card, 0 12px 34px rgba(15, 61, 133, 0.1));
  --cloud-radius: var(--radius-card, 8px);
  --cloud-product-radius: 14px;
  margin: 0;
  color: var(--cloud-title);
  background: var(--cloud-white);
}
.spain-cloud-page *,
.spain-cloud-page *::before,
.spain-cloud-page *::after {
  box-sizing: border-box;
}
.spain-cloud-page__consultation {
  display: block;
  width: 100%;
  max-width: none;
}
.cloud-container,
.cloud-hero__inner {
  width: calc(100% - 48px);
  max-width: var(--container, 1360px);
  margin: 0 auto;
}
.cloud-section {
  padding: var(--section-y, 60px) 0;
}
.cloud-section__heading {
  margin: 0 0 36px;
  text-align: center;
}
.cloud-section__title {
  margin: 0;
  color: var(--cloud-title);
  font-size: var(--font-size-title, 27px);
  font-weight: var(--weight-bold, 700);
  line-height: var(--line-title, 38px);
}
.cloud-section__subtitle {
  margin: 10px 0 0;
  color: var(--cloud-muted);
  font-size: var(--font-size-small, 14px);
  line-height: var(--line-body, 24px);
}
.cloud-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-small, 6px);
  font-size: 16px;
  font-weight: 400;
  line-height: 48px;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cloud-button:hover {
  transform: translateY(-2px);
}
.cloud-button--light {
  color: var(--cloud-primary);
  background: var(--cloud-white);
  box-shadow: 0 10px 24px rgba(0, 45, 145, 0.24);
}
.cloud-button--light:hover {
  color: var(--cloud-primary-dark);
  box-shadow: 0 14px 28px rgba(0, 45, 145, 0.3);
}
.cloud-button--outline {
  color: var(--cloud-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.82);
}
.cloud-button--outline:hover {
  color: var(--cloud-primary);
  background: var(--cloud-white);
}
.cloud-hero {
  height: 500px;
  overflow: hidden;
  background-color: var(--cloud-primary);
  background-image: url("/img/v2026/server/index/banner-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cloud-hero__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.cloud-hero__content {
  position: relative;
  z-index: 1;
  width: 690px;
}
.cloud-hero__highlight {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 20px;
  padding: 8px 18px;
  color: var(--cloud-white);
  background: linear-gradient(90deg, #fa9337 0%, rgba(250, 147, 55, 0) 100%);
  border-radius: 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  white-space: nowrap;
}
.cloud-hero__title {
  margin: 0 0 20px;
  color: var(--cloud-white);
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 1px;
}
.cloud-hero__description {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 30px;
}
.cloud-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.cloud-hero__tag {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  color: var(--cloud-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 18px;
  font-size: 14px;
}
.cloud-hero__actions {
  display: flex;
  gap: 16px;
}
.cloud-products {
  /* 产品参数模块指定浅蓝背景 */
  background: #eaf4fe;
}
.cloud-products .cloud-section__subtitle {
  font-size: 18px;
  line-height: 28px;
}
.cloud-products__switcher {
  display: flex;
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--cloud-soft);
  border: 1px solid var(--cloud-border);
  border-radius: var(--cloud-radius);
}
.cloud-products__tab {
  position: relative;
  min-height: 64px;
  min-width: 0;
  flex: 1 1 auto;
  padding: 14px 20px;
  color: var(--cloud-title);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--cloud-border);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  white-space: nowrap;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}
.cloud-products__tab:last-child {
  border-right: 0;
}
.cloud-products__tab::after {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 3px;
  background: transparent;
  content: "";
}
.cloud-products__tab:hover,
.cloud-products__tab--active {
  color: var(--cloud-primary);
  background: var(--cloud-white);
}
.cloud-products__tab--active::after {
  background: var(--cloud-primary);
}
.cloud-products__tab:focus-visible,
.cloud-products__switcher:focus-visible,
.cloud-scenarios__tab:focus-visible,
.cloud-product-card__button:focus-visible,
.cloud-help__item:focus-visible,
.cloud-button:focus-visible {
  outline: 2px solid var(--cloud-primary);
  outline-offset: 3px;
}
.cloud-products__panel[hidden] {
  display: none;
}
.cloud-products__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  grid-template-columns: none;
  align-items: stretch;
  gap: 20px;
  margin: -14px -2px 0;
  padding: 14px 2px 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.cloud-products__cards::-webkit-scrollbar {
  display: none;
}
.cloud-products__cards:focus-visible {
  outline: 2px solid var(--cloud-primary);
  outline-offset: 4px;
}
.cloud-products__cards.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}
.cloud-products__carousel-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 18px 0 0;
}
.cloud-products__carousel-controls[hidden] {
  display: none;
}
.cloud-products__carousel-progress {
  position: relative;
  height: 7px;
  overflow: hidden;
  background: #dce9f8;
  border-radius: 999px;
  cursor: pointer;
}
.cloud-products__carousel-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 30%;
  background: linear-gradient(90deg, #1664ff 0%, #6c3ed9 100%);
  border-radius: inherit;
  transition: left 0.2s ease, width 0.2s ease;
}
.cloud-products__carousel-progress:focus-visible {
  outline: 2px solid var(--cloud-primary);
  outline-offset: 3px;
}
.cloud-products__carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--cloud-primary);
  background: var(--cloud-white);
  border: 1px solid #c8dcf5;
  border-radius: 50%;
  font: inherit;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.cloud-products__carousel-button span {
  display: block;
  box-sizing: border-box;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.cloud-products__carousel-button[data-carousel-prev] span {
  transform: translateX(1px) rotate(-135deg);
}
.cloud-products__carousel-button[data-carousel-next] span {
  transform: translateX(-1px) rotate(45deg);
}
.cloud-products__carousel-button:hover:not(:disabled) {
  color: var(--cloud-white);
  background: var(--cloud-primary);
  border-color: var(--cloud-primary);
  transform: translateY(-2px);
}
.cloud-products__carousel-button:focus-visible {
  outline: 2px solid var(--cloud-primary);
  outline-offset: 3px;
}
.cloud-products__carousel-button:disabled {
  color: #b8c5d3;
  background: #edf3fa;
  border-color: #e0e9f3;
  cursor: not-allowed;
}
.cloud-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 24px;
  background: var(--cloud-white);
  border: 1px solid #cfe3f7;
  border-radius: var(--cloud-product-radius);
  scroll-snap-align: start;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.cloud-product-card:hover {
  border-color: #9cc4ee;
  box-shadow: 0 14px 30px rgba(21, 101, 216, 0.14);
  transform: translateY(-5px);
}
.cloud-product-card--hot {
  border: 2px solid var(--cloud-primary);
}
.cloud-product-card__badge {
  position: absolute;
  top: -13px;
  right: 18px;
  padding: 3px 12px;
  color: var(--cloud-white);
  background: linear-gradient(90deg, #ff7a45, #ff4d4f);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}
.cloud-product-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  line-height: 27px;
}
.cloud-product-card__scene {
  min-height: 40px;
  margin: 0 0 16px;
  color: var(--cloud-muted);
  font-size: 13px;
  line-height: 20px;
}
.cloud-product-card ul {
  flex: 1;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.cloud-product-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed #e3eef9;
  font-size: 14px;
  line-height: 22px;
}
.cloud-product-card li span {
  color: var(--cloud-muted);
}
.cloud-product-card li strong {
  color: var(--cloud-title);
  font-weight: 600;
  text-align: right;
}
.cloud-product-card__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  overflow: hidden;
  color: var(--cloud-white);
  background-color: #1664ff;
  background-image: linear-gradient(90deg, #1664ff 0%, #6c3ed9 100%);
  border-radius: 10px;
  font-size: 0;
  font-weight: 400;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.cloud-product-card__button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -48px;
  width: calc(100% + 96px);
  background: #1664ff;
  border-radius: 0 48px 48px 0;
  content: "";
  transform: translateX(-100%);
  transition: transform 0.68s cubic-bezier(0.22, 0.8, 0.28, 1);
}
.cloud-product-card__button::after {
  position: relative;
  z-index: 1;
  content: "购买咨询";
  font-size: var(--purchase-button-font-size, 16px);
  line-height: 48px;
}
.cloud-product-card__button:hover {
  color: var(--cloud-white);
  box-shadow: 0 8px 20px rgba(21, 101, 216, 0.3);
  text-decoration: none;
  transform: translateY(-2px);
}
.cloud-product-card__button:hover::before {
  transform: translateX(0);
}
.cloud-product-card__button:visited,
.cloud-product-card__button:active,
.cloud-product-card__button:focus {
  color: var(--cloud-white);
  text-decoration: none;
}
.cloud-advantages {
  background: var(--cloud-soft);
}
.cloud-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cloud-advantage-card {
  padding: 28px 26px;
  background: var(--cloud-white);
  border: 1px solid var(--cloud-border);
  border-radius: var(--cloud-radius);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.cloud-advantage-card:hover {
  border-color: #b7cdfc;
  box-shadow: var(--cloud-shadow);
  transform: translateY(-4px);
}
.cloud-advantage-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  background: #edf4ff;
  border-radius: 10px;
}
.cloud-advantage-card__icon img {
  width: 32px;
  height: 32px;
}
.cloud-advantage-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.cloud-advantage-card p {
  margin: 0;
  color: var(--cloud-muted);
  font-size: 14px;
  line-height: 24px;
}
.cloud-intro {
  background: #ffffff;
}
.cloud-intro__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #dce8fa;
  border-radius: 16px;
  box-shadow: 0 20px 52px rgba(15, 61, 133, 0.12);
}
.cloud-intro__media {
  margin: 0;
  overflow: hidden;
  background: #10264b;
}
.cloud-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cloud-intro__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 54px 34px;
  background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%);
  border-top: 4px solid var(--cloud-primary);
}
.cloud-intro__content::before {
  width: 120px;
  height: 120px;
  margin-bottom: 8px;
  background: url("/img/v2026/server/index/intro-server-icon.png") center / contain no-repeat;
  content: "";
  flex: 0 0 auto;
}
.cloud-intro__content > p {
  margin: 0 0 20px;
  color: var(--cloud-title);
  font-size: 16px;
  line-height: 31px;
  text-align: justify;
}
.cloud-intro__content > p:last-child {
  margin-bottom: 0;
}
.cloud-scenarios {
  background: #0c1d3b;
}
.cloud-scenarios .cloud-section__title {
  color: var(--cloud-white);
}
.cloud-scenarios__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.75fr);
  min-height: 590px;
  overflow: hidden;
  background: #10264b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--cloud-radius);
}
.cloud-scenarios__visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}
.cloud-scenarios__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(4, 17, 42, 0.9) 100%);
  content: "";
  pointer-events: none;
}
.cloud-scenarios__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.18s ease, transform 0.45s ease;
}
.cloud-scenarios__visual img.is-changing {
  opacity: 0.35;
  transform: scale(1.015);
}
.cloud-scenarios__caption {
  position: absolute;
  right: 36px;
  bottom: 32px;
  left: 36px;
  z-index: 1;
  color: var(--cloud-white);
}
.cloud-scenarios__caption span {
  display: block;
  margin-bottom: 10px;
  color: #7db0ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}
.cloud-scenarios__caption h3 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}
.cloud-scenarios__caption p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 27px;
}
.cloud-scenarios__tabs {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  padding: 18px;
  background: #10264b;
}
.cloud-scenarios__tab {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}
.cloud-scenarios__tab:last-child {
  border-bottom: 0;
}
.cloud-scenarios__tab > span {
  grid-row: 1 / span 2;
  color: #7db0ff;
  font-size: 16px;
  font-weight: 700;
}
.cloud-scenarios__tab strong {
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 8px;
}
.cloud-scenarios__tab small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 22px;
}
.cloud-scenarios__tab::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: transparent;
  content: "";
}
.cloud-scenarios__tab:hover,
.cloud-scenarios__tab--active {
  color: var(--cloud-white);
  background: rgba(255, 255, 255, 0.06);
}
.cloud-scenarios__tab--active::before {
  background: #4f91ff;
}
.cloud-help {
  background: #eaf4fe;
}
.cloud-help__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cloud-help__item {
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 18px 22px;
  color: var(--cloud-title);
  background: var(--cloud-white);
  border: 1px solid var(--cloud-border);
  border-radius: var(--cloud-radius);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.cloud-help__item:hover {
  color: var(--cloud-primary);
  border-color: #b7cdfc;
  box-shadow: var(--cloud-shadow);
  text-decoration: none;
  transform: translateY(-2px);
}
.cloud-help__item:visited,
.cloud-help__item:active,
.cloud-help__item:focus {
  text-decoration: none;
}
.cloud-help__document {
  width: 32px;
  height: 32px;
  background-color: #edf4ff;
  background-image: url("/img/v2026/server/index/help-document-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px auto;
  border-radius: 6px;
}
.cloud-help__document::before {
  content: none;
}
.cloud-help__item strong {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.cloud-help__item i {
  color: var(--cloud-primary);
  font-size: 28px;
  font-style: normal;
  line-height: 24px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.cloud-help__item:hover i {
  transform: translateX(4px);
}
/* ==================== 响应式 ==================== */
@media (max-width: 767px) {
  .cloud-container,
  .cloud-hero__inner {
    width: calc(100% - 32px);
  }
  .cloud-section {
    padding: 40px 0;
  }
  .cloud-section__heading {
    margin-bottom: 26px;
  }
  .cloud-section__title {
    font-size: 24px;
    line-height: 34px;
  }
  .cloud-hero {
    height: 230px;
    background-image: linear-gradient(90deg, rgba(13, 87, 222, 0.86), rgba(13, 87, 222, 0.12)), url("/img/v2026/server/index/banner-bg-m.jpg");
    background-position: center;
  }
  .cloud-hero__content {
    width: 100%;
  }
  .cloud-hero__highlight {
    min-height: 26px;
    margin-bottom: 7px;
    padding: 3px 11px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 20px;
    letter-spacing: 0;
  }
  .cloud-hero__title {
    margin-bottom: 7px;
    font-size: 28px;
    line-height: 38px;
  }
  .cloud-hero__description {
    width: 94%;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 20px;
  }
  .cloud-hero__tags {
    gap: 5px;
    margin-bottom: 10px;
  }
  .cloud-hero__tag {
    height: 25px;
    padding: 0 9px;
    border-radius: 13px;
    font-size: 11px;
  }
  .cloud-hero__actions {
    gap: 8px;
  }
  .cloud-button {
    min-width: 100px;
    height: 36px;
    padding: 0 16px;
    font-size: 13px;
    line-height: 36px;
  }
  .cloud-products__switcher {
    display: flex;
    width: calc(100% + 16px);
    margin-bottom: 16px;
    margin-right: -16px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: var(--cloud-radius) 0 0 var(--cloud-radius);
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: none;
    scrollbar-width: none;
    cursor: grab;
  }
  .cloud-products__switcher::-webkit-scrollbar {
    display: none;
  }
  .cloud-products__switcher.is-dragging {
    scroll-behavior: auto;
    scroll-snap-type: none;
    cursor: grabbing;
    user-select: none;
  }
  .cloud-products__tab {
    width: auto;
    min-width: max-content;
    min-height: 42px;
    flex: 0 0 auto;
    padding: 2px 14px;
    border-right: 1px solid var(--cloud-border);
    border-bottom: 0;
    font-size: 15px;
    line-height: 19px;
    overflow-wrap: normal;
    scroll-snap-align: none;
    white-space: nowrap;
  }
  .cloud-products__tab:last-child {
    border-right: 0;
  }
  .cloud-products__tab::after {
    top: auto;
    right: 18px;
    bottom: 0;
    left: 18px;
    width: auto;
    height: 3px;
  }
  .cloud-products .cloud-section__heading {
    margin-bottom: 18px;
  }
  .cloud-products__cards {
    width: 100%;
    min-width: 0;
    grid-auto-columns: min(84vw, 320px);
    gap: 14px;
  }
  .cloud-products__panel {
    width: calc(100% + 16px);
    min-width: 0;
    margin-right: -16px;
  }
  .cloud-products__carousel-controls {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 0;
  }
  .cloud-products__carousel-button {
    width: 38px;
    height: 38px;
  }
  .cloud-product-card {
    padding: 24px 20px;
  }
  .cloud-advantages__grid,
  .cloud-help__grid {
    grid-template-columns: 1fr;
  }
  .cloud-advantages__grid {
    gap: 8px;
  }
  .cloud-advantage-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: center;
    padding: 18px;
  }
  .cloud-advantage-card__icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }
  .cloud-advantage-card h3 {
    align-self: end;
    margin-bottom: 3px;
    font-size: 17px;
    line-height: 24px;
  }
  .cloud-advantage-card p {
    align-self: start;
    font-size: 13px;
    line-height: 20px;
  }
  .cloud-intro__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .cloud-intro__media {
    order: 0;
    min-height: 200px;
  }
  .cloud-intro__content {
    padding: 6px 22px 12px;
    border-top: 4px solid var(--cloud-primary);
  }
  .cloud-intro__content::before {
    margin-bottom: 0;
  }
  .cloud-intro__content > p {
    font-size: 14px;
    line-height: 27px;
  }
  .cloud-scenarios__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .cloud-scenarios__visual {
    height: 390px;
  }
  .cloud-scenarios__caption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }
  .cloud-scenarios__caption h3 {
    font-size: 22px;
    line-height: 32px;
  }
  .cloud-scenarios__caption p {
    font-size: 14px;
    line-height: 24px;
  }
  .cloud-scenarios__tabs {
    order: -1;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1px;
    padding: 0;
    background: rgba(255, 255, 255, 0.12);
  }
  .cloud-scenarios__tab {
    grid-template-columns: 1fr;
    min-height: 72px;
    padding: 8px 12px;
    background: #10264b;
    border: 0;
  }
  .cloud-scenarios__tab > span {
    grid-row: auto;
    margin-bottom: 3px;
    font-size: 14px;
  }
  .cloud-scenarios__tab strong {
    font-size: 14px;
    line-height: 22px;
  }
  .cloud-scenarios__tab small {
    display: none;
  }
  .cloud-scenarios__tab::before {
    top: auto;
    right: 14px;
    bottom: 0;
    left: 14px;
    width: auto;
    height: 3px;
  }
  .cloud-help__item {
    padding: 16px;
  }
  .cloud-help__grid {
    gap: 8px;
  }
  .cloud-help__item strong {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cloud-container,
  .cloud-hero__inner {
    width: calc(100% - 48px);
  }
  .cloud-hero__content {
    width: 58%;
  }
  .cloud-hero__title {
    font-size: 42px;
  }
  .cloud-products__tab {
    padding-right: 18px;
    padding-left: 18px;
  }
  .cloud-products__cards {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
  .cloud-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cloud-intro__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .cloud-intro__media {
    order: -1;
    min-height: 420px;
  }
  .cloud-intro__content {
    padding: 38px 42px 20px;
    border-top: 4px solid var(--cloud-primary);
  }
  .cloud-scenarios__layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  }
  .cloud-scenarios__tab {
    padding-right: 14px;
    padding-left: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .spain-cloud-page *,
  .spain-cloud-page *::before,
  .spain-cloud-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
.network-office-consult {
  padding: 30px 0;
  background: url(/img/page/network/office/bg.jpg) center no-repeat;
  background-size: cover;
}
.network-office-consult h5 {
  font-size: 24px;
  margin: 0;
  color: #fff;
}
.network-office-consult .consult-content {
  flex-direction: row;
  justify-content: space-between;
}
.network-office-consult .title p {
  color: #bed7ff;
  font-size: 16px;
  margin: 20px 0;
}
.network-office-consult .title .btn {
  background-color: #fff;
  color: #2167ef;
  border-color: transparent;
  padding: 0 40px;
  border-radius: 3px;
}
.network-office-consult .card {
  background: linear-gradient(to right, #fff, #d4e2fe);
  padding: 20px;
  border-radius: 5px;
  width: 40%;
}
.network-office-consult .card h6 {
  font-size: 24px;
  margin: 0;
}
.network-office-consult .card h6 b {
  color: #ea374c;
}
.network-office-consult .card p {
  color: #666;
  font-size: 14px;
  line-height: 28px;
}
@media screen and (max-width: 572px) {
  .network-office-consult .card {
    margin-top: 20px;
    width: 100%;
  }
  .network-office-consult .card h6 {
    font-size: 18px;
  }
}
