@font-face {
  font-family: "ExtraBold";
  src: url("../image/font/AlibabaPuHuiTi-2-95-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Regular";
  src: url("../image/font/AlibabaPuHuiTi-2-55-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Medium";
  src: url("../image/font/AlibabaPuHuiTi-2-65-Medium.otf") format("opentype");
}

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --accent-green: #2cd03d;
  --accent-green-dark: #22a82f;
  --accent-green-light: #4ade80;
  --text-white: #ffffff;
  --text-gray: #b6bbc3;
  --text-gray-dark: #6b7280;
  --border-color: #222222;
  --border-color-light: #333333;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f7f9fb;
  color: var(--text-gray);
  font-family: "Regular", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-white);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #00b1f3;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1320px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  outline: none;
}

/* 基础按钮样式（保留你的绿色 + 新增撑满动画基础） */
.btn-primary {
  position: relative;
  overflow: hidden; /* 关键：裁切背景，实现流畅撑满效果 */
  z-index: 1;
  background-color: #71d45f;
  color: #000000;
  /* border: 2px solid var(--accent-green); */
  border-radius: 50px; /* 胶囊圆角，和你官网风格统一 */
  transition: all 0.4s ease-in-out; /* 统一过渡速度，更流畅 */
  padding: 8px;
  display: flex;
  gap: 10px;
}

/* 核心：左侧绿色小圆背景（默认状态） */
.btn-primary::before {
  content: "";
  position: absolute;
  left: 8px; /* 关键：和padding-left对齐，做出边距 */
  top: 8px;
  width: 48px; /* 小圆初始宽度，和你图标匹配 */
  height: calc(100% - 16px); /* 上下各留10px边距 */
  background-color: #000;
  border-radius: 50px;
  z-index: -1;
  transition: width 0.4s ease-in-out; /* 平滑撑满动画 */
}
/* 箭头样式 */
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #71d45f;
  font-size: 20px;
}

.btn-text {
  padding-right: 20px;
  font-family: "Medium";
}

/* hover 效果：小圆撑满全屏 + 保留你原有的所有效果 */
.btn-primary:hover {
  border-color: var(--accent-green-dark);
  color: #fff;
  background-color: #71d45f;
}

/* hover 时：绿色小圆从左往右撑满整个按钮 */
.btn-primary:hover::before {
  width: calc(100% - 16px);
  background-color: #000;
}

.btn-outline {
  background-color: transparent;
  color: #71d45f;
  border: 1px solid #71d45f;
}

.btn-outline:hover {
  border-color: #71d45f;
  color: #71d45f;
}

.btn-full {
  width: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: #12151d;
  /* border-bottom-color: #fff; */
  padding: 14px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
}

.logo {
  height: 48px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin: auto 0;
}

.navbar-toggler {
  display: none;
}

.nav-menu li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-menu li a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #16b6f0;
  transition: width var(--transition-medium);
  border-radius: 1px;
}

.nav-menu li a:hover::after {
  width: 60%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  padding: 8px;
  background: linear-gradient(270deg, #050812 0%, #1f202a 100%);
}

.dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
}

.dropdown-menu a {
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  white-space: nowrap;
}

.dropdown-menu a:last-child {
  margin-bottom: 0;
}

.dropdown-menu a::after {
  display: none !important;
}

.blue-bg {
  background: #f7f9fb;
  width: 100%;
}

.light-blue-bg {
  background: #f7f9fb;
  width: 100%;
  height: 100px;
}

.light-blue-bg-ht {
  background: #f7f9fb;
  width: 100%;
  height: 270px;
  position: relative;
}

.stay-content {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fff;
  font-size: 18px;
  background: #0a1920;
  border-radius: 12px;
  position: absolute;
  top: -200px;
}

.built-content {
  gap: 20px;
  display: flex;
  align-items: center;
  position: absolute;
  top: -100px;
  max-width: 1320px;
}

.built-item {
  background: #ffffffe5;
  padding: 30px 10px;
  text-align: center;
  border-radius: 12px;
  align-self: stretch;
  flex: 1;
}

.built-item .stay-head {
  margin-top: 10px 0;
  color: #000000;
  font-size: 18px;
  font-family: "ExtraBold";
  font-weight: 800;
}

.built-item .stay-item {
  color: #2c3037;
  font-family: "Regular";
  font-size: 18px;
  font-weight: 400;
}

.stay-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: "Regular";
  font-size: 20px;
  max-width: 262px;
  border-right: 1px solid #1f292d;
}

.stay-left-green {
  color: #71d45f;
  font-size: 18px;
}

.stay-left-img img {
  height: 40px;
}

.stay-right {
  display: flex;
  gap: 30px;
  max-width: 958px;
}

.stay-head {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 20px;
  color: #fff;
  font-family: "ExtraBold";
  font-weight: 700;
}

.stay-item {
  color: #bfc3c9;
  font-size: 14px;
  font-weight: 400;
}

.platform-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 125px;
  background: transparent;
  position: relative;
  border-radius: 999px; /* 椭圆圆角 */
  width: fit-content;
  border: 1px solid rgba(113, 212, 95, 1);
  margin: 0 auto;
  margin-bottom: 95px;
}

.platform-icon {
  flex-shrink: 0;
}

.platfooter-text {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.platform-highlight {
  color: #71d45f;
}

.platform-text {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.light-blue-bg-h3 {
  background: #f7f9fb;
  width: 100%;
  height: 220px;
  position: relative;
}

.dark-blue-bg {
  background: #f5f6fa;
  width: 100%;
  height: 120px;
}

.dark-blue-section {
  background: #f5f6fa;
}

.section-2.not-border-right {
  background: #f5f6fa;
  padding-bottom: 100px;
}
.section-wrapper {
  position: relative;
}

.flag-section {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -190px;
  z-index: 9;
  background: transparent;
}

.flag-bg {
  background: #f5f6fa;
  width: 100%;
}
.flag-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.flag-card img {
  height: 42px;
}

.flag-card div h5 {
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight: 800;
  font-family: "ExtraBold";
  margin-bottom: 2px;
}

.flag-card div div {
  color: rgba(44, 48, 55, 1);
  font-size: 14px;
  font-weight: 400;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-2 {
  padding-bottom: 50px;
  position: relative;
}

.section-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  color: #71d45f;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}
.section-badge-2 {
  margin-bottom: 5px;
}

.section-badge::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #71d45f;
  order: 1;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 40px;
  line-height: 1.15;
  font-family: "ExtraBold";
}

.section-title--small {
  margin: 40px 0px 20px;
}

.section-flex {
  margin: 40px 0px;
  gap: 40px;
  display: flex;
}

.section-flex-item.where-flex-item {
  border: 1px solid rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.45);
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-family: "ExtraBold";
  font-weight: 800;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 515px;
}

.section-flex-item.where-flex-item.power-item {
  max-width: 420px;
}

.section-flex-item.where-flex-item.infrastructure-flex-item {
  margin: 40px 0;
  max-width: 535px;
}

.section-flex-item {
  border: 1px solid rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.45);
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-family: "ExtraBold";
  font-weight: 800;
  padding: 20px;
  padding-right: 0px;
  border-radius: 8px;
  flex: 1;
}

.section-flex-item div {
  margin-bottom: 31px;
}

.icon-text-list {
  font-size: 18px;
  font-weight: 400;
  font-family: "Regular";
  margin: 0;
}

.icon-text-list li {
  margin-bottom: 16px;
  gap: 10px;
  display: flex;
}

.where-flex-item .icon-text-list li {
  padding-left: 20px;
  margin-bottom: 10px;
  gap: 31px;
}

.where-flex-item .icon-text-list.icon-list-mb li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.where-flex-item .icon-text-list-pl li {
  padding-left: 20px;
}

.icon-text-list li:last-child {
  margin-bottom: 0;
}

.infrastructure-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: rgba(44, 48, 55, 1);
  font-size: 18px;
}

.infra-item svg {
  flex-shrink: 0;
}

.infra-item {
  padding: 20px 30px;
  background: rgba(255, 255, 255, 10.45);
  border-radius: 8px;
  border: 1px solid rgba(113, 212, 95, 1);
  gap: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
}

.infra-item.infra-item-green {
  background: rgba(113, 212, 95, 1);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.item-head {
  font-size: 18px;
  font-weight: 800;
  font-family: "ExtraBold";
  color: rgba(0, 0, 0, 1);
}

.orche-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.orche-card-content {
  background: rgba(255, 255, 255, 1);
  border-radius: 8px;
  display: flex;
  padding: 20px;
  gap: 20px;
  align-items: center;
}

.orche-bg .section-badge {
  margin-bottom: 20px;
}
.text-top {
  color: rgba(0, 0, 0, 1);
  font-size: 22px;
  font-weight: 700;
  font-family: "ExtraBold";
}

.text-bottom {
  font-size: 18px;
  color: rgba(44, 48, 55, 1);
}

.section-subtitle {
  font-size: 16px;
  color: rgba(44, 48, 55, 1);
  margin-bottom: 48px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-subtitle-mg {
  margin-top: 28px;
}

.section-content {
  font-size: 18px;
  color: rgba(44, 48, 55, 1);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-content-bold {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  font-weight: 800;
  font-family: "ExtraBold";
}

.section-content-bold {
  font-family: "ExtraBold";
  font-weight: 800;
}

.section-bgwhite {
  background: rgba(255, 255, 255, 0.5);
  padding: 30px 15px;
  color: rgba(44, 48, 55, 1);
  font-size: 16px;
  font-weight: 800;
  font-family: "ExtraBold";
}

.banner-bg {
  background-image: url("../image/grid/BG_02.jpg");
  background-size: cover; /* 等比例铺满容器，不变形 */
  background-position: center; /* 图片居中 */
  background-repeat: no-repeat;
}

.problem-section {
  background-color: #00090d;
  color: rgba(255, 255, 255, 1);
}

.problem-section .section-title {
  color: rgba(255, 255, 255, 1);
}

.problem-section .section-badge {
  margin-bottom: 20px;
}

.problem-content {
  margin-bottom: 40px;
}

.problem-footer {
  margin-top: 60px;
  padding: 22px 100px;
  background: rgba(10, 25, 32, 1);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 40px;
}

.platform-img img {
  height: 104px;
}

.approach-bg {
  background-image: url("../image/grid/BG_03.jpg");
  background-size: auto 853px; /* 等比例铺满容器，不变形 */
  background-position: right center; /* 图片居中 */
  background-repeat: no-repeat;
  padding: 0px;
}

.approach-mask {
  padding-top: 174px;
  padding-bottom: 95px;
  /* 水平从左到右渐变 */
  background: linear-gradient(
    90deg,
    rgba(246, 248, 250, 1) 0%,
    rgba(246, 248, 250, 1) 33%,
    rgba(246, 248, 250, 0) 66%,
    rgba(246, 248, 250, 0) 100%
  );
}

.model-bg {
  background-image: url("../image/grid/BG_04.jpg");
  background-size: auto 841px; /* 等比例铺满容器，不变形 */
  background-position: right center; /* 图片居中 */
  background-repeat: no-repeat;
  padding: 0px;
}

.model-mask {
  padding-top: 93px;
  padding-bottom: 107px;
  /* 水平从左到右渐变 */
  background: linear-gradient(
    90deg,
    rgba(246, 248, 250, 1) 0%,
    rgba(246, 248, 250, 1) 33%,
    rgba(246, 248, 250, 0) 66%,
    rgba(246, 248, 250, 0) 100%
  );
}

.infrastructure-bg {
  background-image: url("../image/grid/BG_05.jpg");
  background-size: auto 989px; /* 等比例铺满容器，不变形 */
  background-position: right center; /* 图片居中 */
  background-repeat: no-repeat;
  padding: 0px;
}

.banner-mask {
  padding-top: 83px;
  padding-bottom: 0px;
  background: linear-gradient(
    90deg,
    rgba(246, 248, 250, 1) 0%,
    rgba(246, 248, 250, 1) 33%,
    rgba(246, 248, 250, 0) 66%,
    rgba(246, 248, 250, 0) 100%
  );
}

.where-bg {
  background-image: url("../image/grid/BG_06.jpg");
  background-size: auto 870px; /* 等比例铺满容器，不变形 */
  background-position: right center; /* 图片居中 */
  background-repeat: no-repeat;
  padding: 0px;
}

.where-mask {
  padding: 120px 0;
  background: linear-gradient(
    90deg,
    rgba(246, 248, 250, 1) 0%,
    rgba(246, 248, 250, 1) 33%,
    rgba(246, 248, 250, 0) 66%,
    rgba(246, 248, 250, 0) 100%
  );
}

.who-bg {
  background-image: url("../image/grid/BG_07.jpg");
  background-size: auto 850px; /* 等比例铺满容器，不变形 */
  background-position: right center; /* 图片居中 */
  background-repeat: no-repeat;
  padding: 0px;
}

.who-mask {
  padding: 124px 0 125px 0;
  background: linear-gradient(
    90deg,
    rgba(246, 248, 250, 1) 0%,
    rgba(246, 248, 250, 1) 33%,
    rgba(246, 248, 250, 0) 66%,
    rgba(246, 248, 250, 0) 100%
  );
}

.power-bg {
  background-image: url("../image/grid/BG_08.jpg");
  background-size: auto 925px; /* 等比例铺满容器，不变形 */
  background-position: right center; /* 图片居中 */
  background-repeat: no-repeat;
  padding: 0px;
}

.power-mask {
  padding: 124px 0 122px 0;
  background: linear-gradient(
    90deg,
    rgba(246, 248, 250, 1) 0%,
    rgba(246, 248, 250, 1) 33%,
    rgba(246, 248, 250, 0) 66%,
    rgba(246, 248, 250, 0) 100%
  );
}

.orche-bg {
  background-image: url("../image/grid/BG_09.jpg");
  background-size: auto 966px; /* 等比例铺满容器，不变形 */
  background-position: right center; /* 图片居中 */
  background-repeat: no-repeat;
  padding-top: 0px;
}

.orche-mask {
  padding: 124px 0 122px 0;
  background: linear-gradient(
    90deg,
    rgba(247, 249, 251, 1) 0%,
    rgba(255, 255, 255, 1) 33%,
    rgba(255, 255, 255, 0) 66%,
    rgba(247, 249, 251, 0) 100%
  );
}

.built-bg {
  background-image: url("../image/grid/BG_10.jpg");
  background-size: auto 741px; /* 等比例铺满容器，不变形 */
  background-position: right center; /* 图片居中 */
  background-repeat: no-repeat;
  padding: 0;
  height: 741px;
}

.built-mask {
  height: 741px;
  padding: 120px 0 122px 0;
  background: linear-gradient(
    90deg,
    rgba(247, 249, 251, 1) 0%,
    rgba(247, 249, 251, 1) 33%,
    rgba(247, 249, 251, 0) 66%,
    rgba(247, 249, 251, 0) 100%
  );
}

.global-bg {
  background-image: url("../image/contact/BG_11.jpg");
  background-size: cover; /* 等比例铺满容器，不变形 */
  background-position: center; /* 图片居中 */
  background-repeat: no-repeat;
}

.scale-bg {
  background-image: url("../image/contact/BG_12.jpg");
  background-size: cover; /* 等比例铺满容器，不变形 */
  background-position: center; /* 图片居中 */
  background-repeat: no-repeat;
}

.sovereignty-bg {
  background-image: url("../image/contact/BG_14.jpg");
  background-size: cover; /* 等比例铺满容器，不变形 */
  background-position: center right; /* 图片居中 */
  background-repeat: no-repeat;
}

.xeco-bg {
  background-image: url("../image/contact/BG_13.jpg");
  background-size: cover; /* 等比例铺满容器，不变形 */
  background-position: center; /* 图片居中 */
  background-repeat: no-repeat;
}

.contact-bg .section-badge {
  color: #0b0f15;
}

.contact-bg .section-badge::before {
  background: #0b0f15;
}

.svg-draw-path {
  animation: svg-draw 2s ease-in-out forwards;
}

.hero-logo {
  margin-bottom: 10px;
}

.hero-logo img {
  height: 160px;
}

.hero-section {
  min-height: 960px;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 40px;
  max-width: 100%;
  font-family: "ExtraBold";
}

.hero-title—2 {
  font-size: 54px;
}

.hero-subtitle {
  font-size: 35px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 100%;
  font-family: "ExtraBold";
}

.hero-title .char,
.hero-subtitle .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(6px);
  animation: char-reveal 0.7s ease forwards;
}

.hero-title .word,
.hero-subtitle .word {
  display: inline-block;
  white-space: nowrap;
}

@keyframes char-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  font-size: 18px;
  color: rgba(191, 195, 201, 1);
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.about-content {
  padding-right: 40px;
}

.about-image {
  display: none;
}

.flag-content {
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.contact-title {
  color: #101819;
}

.sovereignty-title {
  color: rgba(255, 255, 255, 1);
}

.contact-section-desc {
  color: #101819;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
}

.cta-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #060912;
  color: #71d45f;
  border: #fff;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-button::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 48px;
  height: calc(100% - 16px);
  background-color: #71d45f;
  border-radius: 50px;
  z-index: -1;
  transition: width 0.4s ease-in-out;
}

.cta-button:hover {
  color: #060912;
  background-color: #060912;
}

.cta-button:hover::before {
  width: calc(100% - 16px);
  background-color: #71d45f;
}

.cta-icon {
  width: 48px;
  height: 48px;
  background: #71d45f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  line-height: 1;
}

.cta-text {
  padding-right: 20px;
  font-family: "Medium";
}

.contact-bg {
  background-image: url("../image/home/Frame_19.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.features-grid {
  margin: 50px 0;
}

.feature-card {
  /* background: #f7f9fb; */
  border-radius: 10px;
  padding: 0px 18px;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.19);
}

.feature-card:hover svg {
  animation: shakeX 0.5s ease-in-out;
}

@keyframes shakeX {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}

.feature-card h4 {
  color: rgba(255, 255, 255, 1);
  font-family: "Medium";
  font-size: 16px;
  font-weight: 500;
}

.feature-card p {
  color: rgba(44, 48, 55, 1);
  font-size: 16px;
}

.reduce-item {
  padding: 0;
  margin-bottom: 20px;
}

.reduce-item h4 {
  font-family: "ExtraBold";
}

.reduce-item div {
  color: #2c3037;
  font-size: 16px;
}

.grid-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  font-family: "ExtraBold";
}

.grid-card-top-item {
  display: flex;
  justify-content: start;
  gap: 10px;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.medium-item {
  width: 20px;
  height: 1px;
  background: rgba(0, 0, 0, 1);
  margin: 15px 0;
}
.bottom-item {
  padding: 0 20px;
}
.top-item {
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.5s ease;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: transparent;
}

.top-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.top-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加阴影 */
}

.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0;
}

.footer-top {
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

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

.footer-desc {
  font-size: 14px;
  color: var(--text-white);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h5 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 16px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  font-size: 16px;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: #03b6f0;
}

.footer-email {
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 24px;
}

/* 订阅表单 */
.footer-subscribe {
  display: flex;
  align-items: center;
  background: #2a2d34;
  border-radius: 999px;
  padding: 4px;
  max-width: 300px;
}

.subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  padding: 12px 20px;
  font-size: 16px;
}

.subscribe-input::placeholder {
  color: var(--text-gray-dark);
}

.subscribe-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #71d45f;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.subscribe-btn:hover {
  transform: scale(1.05);
}

.footer-left {
  margin-top: 0;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.footer-right {
  margin-left: 60px;
}

.footer-right-top {
  margin-bottom: 34px;
  display: flex;
  justify-content: flex-start;
  gap: 109px;
}

/* 底部栏 */
.footer-bottom {
  margin-top: 0;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 16px;
  color: var(--text-white);
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-size: 16px;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: #03b6f0;
}

@keyframes svg-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.gridIQ-section {
  text-align: center;
  background: rgba(8, 8, 8, 1);
}

.gridIQ-section .section-title {
  color: var(--text-white);
  margin-bottom: 20px;
}

.bottom-features-grid {
  margin-top: 40px;
  margin-bottom: 40px !important;
}

.features-grid {
  margin-bottom: 2px;
}

.features-grid .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: left;
  height: 100%;
  transition: all var(--transition-medium);
}

.features-grid .grid-card {
  background: var(--bg-card);
  border: 1px solid #2c3037;
  padding: 20px;
}

.features-grid .grid-card-2 {
  background: var(--bg-card);
  border: 1px solid #2c3037;
  padding: 30px;
}

.card-top-solution {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.card-top-nm {
  margin-bottom: 0px;
  gap: 20px;
  color: #bfc3c9;
}

.card-top-nm h4 {
  color: #bfc3c9;
}

.gridiq-architecture {
  margin-bottom: 60px;
}

.gridiq-architecture img {
  height: 80px;
}

.gridIQ-card {
  background: #f7f9fb;
  border-radius: 10px;
  /* padding: 30px 18px; */
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: start;
}

.arrow-desktop {
  display: block;
}

.arrow-mobile {
  display: none;
}

.gridIQ-card .card-top {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 18px;
}

.gridIQ-card:hover {
  background: rgba(255, 255, 255, 0.19);
}

.gridIQ-card:hover svg {
  animation: shakeX 0.5s ease-in-out;
}

@keyframes shakeX {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}

.gridIQ-card h4 {
  color: rgba(0, 0, 0, 1);
  font-size: 22px;
  font-family: "ExtraBold";
}

.gridIQ-card h4 span {
  color: rgba(113, 212, 95, 1);
}

.gridIQ-card p {
  color: rgba(52, 68, 50, 1);
  font-size: 14px;
  text-align: left;
}

.email-section {
  text-align: center;
}

.email-title {
  color: #000;
  font-weight: 800;
  font-family: "ExtraBold";
  margin-bottom: 20px;
}

.email-title-2 {
  margin-bottom: 40px;
}

/* Email cards fix: force single row + equal height */
.email-section .row {
  align-items: stretch;
}

.email-section .col-lg {
  display: flex;
  min-width: 0;
}

.email-section .feature-card {
  height: 100%;
  width: 100%;
  position: relative;
  background-color: #f7f9fb;
  border: none;
  text-align: center;
}

.email-section .feature-card h4 {
  color: #000;
  font-family: "ExtraBold";
  font-size: 22px;
  font-weight: 700;
}

/* Vertical divider between cards */
:not(.not-border-right).email-section .feature-card::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 43%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: rgba(151, 171, 190, 1);
}

.email-section .col-lg:last-child .feature-card::after {
  display: none;
}

/* Section Divider: two-part horizontal line with dots */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.divider-half {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 540px;
}

.divider-text {
  font-size: 16px;
  font-weight: 800;
  color: rgba(0, 0, 0, 1);
  font-family: "ExtraBold";
}
.divider-text span {
  color: rgba(113, 212, 95, 1);
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(151, 171, 190, 1);
  flex-shrink: 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(151, 171, 190, 1);
}

/* ========== Step List (Why XECO) ========== */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: #71d45f;
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  text-align: left;
}

.step-line {
  width: 1px;
  height: 60px;
  background: #e5e7eb;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
  line-height: 1.3;
  font-family: "ExtraBold";
}

.step-text p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(44, 48, 55, 1);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .step-item {
    gap: 16px;
  }

  .step-number {
    font-size: 36px;
    width: 48px;
  }

  .step-line {
    height: 50px;
  }

  .step-text h4 {
    font-size: 18px;
  }

  .step-text p {
    font-size: 14px;
  }
}

/* 1. 整体容器 */
.energy-assets {
  position: relative;
}
/* 2. 顶部标题 */
.assets-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 40px;
  position: relative;
  top: 24px;
  z-index: 2;
  font-family: "ExtraBold";
}
/* 3. 顶部主横线（贯穿整行） */
.line-main {
  position: absolute;
  top: 17px;
  left: 6.2%;
  right: 6.2%;
  height: 2px;
  background: #97abbe;
  z-index: 1;
}
/* 4. 每个图标项：相对定位，放小竖线+圆点 */
.asset-item {
  position: relative;
  text-align: center;
}
/* 向下小竖线 */
.asset-item::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: #97abbe;
}
/* 顶部小圆点 */
.asset-item::after {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #97abbe;
}
/* 图标容器：圆角白色背景 */
.asset-icon {
  width: 60px;
  height: 6-px;
  background: #f8fafc;
  border-radius: 20px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.asset-icon img {
  max-width: 60px;
}
/* 文字样式 */
.asset-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(44, 48, 55, 1);
}

/* ── Platform Product Cards ── */
.platform-connect-line {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 30px auto 20px;
  height: 1px;
  background: rgba(151, 171, 190, 1);
}

.platform-connect-line .connect-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platform-connect-line .connect-vline {
  width: 1px;
  height: 20px;
  background: rgba(151, 171, 190, 1);
}

.platform-connect-line .connect-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(151, 171, 190, 1);
  flex-shrink: 0;
}

/* 上方中间节点 */
.connect-node-up {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 2px;
}

.connect-node-up .connect-dot {
  order: -1;
  background: rgba(151, 171, 190, 1);
}

/* 下方三个节点 */
.connect-node-down {
  top: 100%;
}

.connect-node-down-left {
  left: 0;
  transform: translateX(-50%);
}

.connect-node-down-right {
  left: 100%;
  transform: translateX(-50%);
}

.platform-product-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  height: 100%;
}
.card-nug {
  background-image: url("../image/contact/Frame_14.jpg");
  background-size: cover; /* 等比例铺满容器，不变形 */
  background-position: center; /* 图片居中 */
  background-repeat: no-repeat;
}

.card-evergrid {
  background-image: url("../image/contact/Frame_15.jpg");
  background-size: cover; /* 等比例铺满容器，不变形 */
  background-position: center; /* 图片居中 */
  background-repeat: no-repeat;
}

.product-card-content {
  position: relative;
  z-index: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.email-content img {
  height: 80px;
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

@media (max-width: 575px) {
  .product-card-top {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
}

.product-logo {
  height: 140px;
}

.product-intro {
  text-align: left;
}

.product-intro h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: "ExtraBold";
}

.product-intro p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.p-feature {
  position: relative;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.p-feature::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background: rgba(151, 171, 190, 1);
}

.col-lg-3:last-child .p-feature::after {
  display: none;
}

.p-feature div {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.product-slogan {
  font-size: 16px;
  font-weight: 800;
  margin-top: auto;
  padding-top: 16px;
  text-align: left;
}

.nug-slogan {
  color: rgba(113, 212, 95, 1);
}

.ever-slogan {
  color: rgba(106, 106, 106, 1);
}

/* ========== Engagement Section (HOW YOU ENGAGE / Engagement Models) ========== */
.engagement-section {
  background: #f5f6fa;
  padding: 100px 80px;
}

.engagement-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.engagement-left {
  flex: 0 0 42%;
  max-width: 42%;
}

.engagement-right {
  flex: 0 0 50%;
  max-width: 50%;
}

.engagement-divider {
  width: 1px;
  background: #dddddd;
  align-self: stretch;
  flex-shrink: 0;
}

.engagement-section .section-badge {
  margin-bottom: 20px;
}

/* Override title for engagement section */
.engagement-section .section-title {
  font-size: 34px;
  font-weight: 800;
  color: #000;
  line-height: 1.3;
  margin-bottom: 40px;
  font-family: "ExtraBold", sans-serif;
}

.engagement-left .section-body p {
  font-size: 18px;
  color: #2c3037;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 480px;
}

.engagement-left .section-body p:last-child {
  margin-bottom: 0;
}

.engage-list-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #97abbe;
}

.engage-list-item:first-child {
  padding-top: 0;
}
.engage-list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.engage-list-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.engage-list-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: "ExtraBold", sans-serif;
}

.engage-list-content p {
  font-size: 18px;
  color: #2c3037;
  line-height: 1.5;
  margin: 0;
}

.section-divider-line {
  margin: 60px 0;
  margin-bottom: 100px;
}

.engagement-bottom {
  padding: 60px 0;
}

.engagement-bottom-header {
  margin-bottom: 20px;
}

.engagement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.engage-model-card {
  background: #f7f9f5;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #ebede8;
}

.engage-model-icon {
  margin-bottom: 15px;
}

.engage-model-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "ExtraBold", sans-serif;
}

.engage-model-desc {
  font-size: 18px;
  color: #2c3037;
  line-height: 1.3;
  margin-bottom: 50px;
}

.engage-model-diagram {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eff3ec;
  border-radius: 8px;
  min-height: 180px;
}

.diagram-box {
  font-size: 16px;
  color: #000;
  text-align: center;
  line-height: 1.4;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diagram-user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagram-circle-logo img {
  height: 122px;
}

.diagram-badge {
  padding: 4px 10px;
  background: #111111;
  color: #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.grid-icon img {
  height: 42px;
}

.commercial-bg .section-badge {
  margin-bottom: 20px;
}

.commercial-bg .section-title {
  margin-bottom: 20px;
}

/* ========== Commercial Models (6 Cards + Banner) ========== */
.commercial-bg .section-title {
  font-size: 28px;
  font-weight: 600;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 16px;
  font-family: "Medium", sans-serif;
}

.deliver-bg .section-title {
  margin-bottom: 20px;
}

.commercial-bg .section-content {
  font-size: 16px;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0px;
}

.commercial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  padding: 40px 0;
}

.commercial-card {
  border: 1px solid #cbd6e0;
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.commercial-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.commercial-card-icon {
  margin-bottom: 20px;
}

.commercial-card-icon img {
  height: 48px;
}

.commercial-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "Medium", sans-serif;
}

.commercial-card-desc {
  font-size: 15px;
  color: #444444;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.commercial-banner {
  background: #0f1c22;
  border-radius: 10px;
  padding: 50px 100px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.commercial-banner-icon {
  flex-shrink: 0;
}

.commercial-banner-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.delievery-banner {
  max-width: 600px;
}

/* ========== HOW WE DELIVER (5-Step Cards) ========== */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.delivery-card {
  border: 1px solid #cbd6e0;
  border-radius: 12px;
  padding: 7px 15px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.delivery-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.delivery-step {
  height: 48px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.delivery-icon {
  margin-bottom: 20px;
}

.delivery-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
  line-height: 1.3;
  font-family: "ExtraBold", sans-serif;
}

.delivery-subtitle {
  font-size: 16px;
  color: #2c3037;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 800;
  font-family: "ExtraBold", sans-serif;
}

.delivery-desc {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  color: #2c3037;
}

.model-img {
  display: none;
}

.gridIQ-img {
  display: block;
}
@media (max-width: 991px) {
  .product-card-top {
    flex-direction: row;
    align-items: center;
  }

  .product-logo {
    height: 80px;
  }

  .product-features {
    gap: 12px;
  }

  .p-feature::after {
    display: none;
  }

  .platform-product-card .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .platform-product-card .row > [class*="col-"] {
    width: 100%;
    padding: 0;
    flex: none;
    max-width: none;
  }

  .platform-connect-line {
    display: none;
  }

  .connect-vline {
    height: 12px;
  }

  .connect-node-down .connect-vline {
    margin-bottom: 0;
  }

  .product-intro h4 {
    font-size: 18px;
  }

  .product-slogan {
    font-size: 14px;
  }

  .navbar {
    padding: 14px 16px;
  }

  .navbar.scrolled {
    padding: 14px 16px;
    background: #12151d;
    border-bottom-color: transparent;
  }

  .navbar .container {
    position: relative;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(18, 21, 29, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-top: 1px solid #333;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
  }

  .nav-menu li a::after {
    display: none;
  }

  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
  }

  .navbar-toggler-icon {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -6px;
  }

  .navbar-toggler-icon::after {
    top: 6px;
  }

  .navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler.active .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .navbar-toggler.active .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .features-grid {
    margin: 0;
  }

  .light-blue-bg {
    display: none;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .section-title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .section-content {
    font-size: 14px;
  }

  .section-desc {
    font-size: 14px;
  }

  .section-subtitle {
    font-size: 14px;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .engagement-section .section-badge {
    margin-bottom: 5px;
  }

  .section-badge {
    font-size: 14px;
  }

  .section-bgwhite {
    font-size: 14px;
  }

  .hero-section {
    min-height: 680px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .hero-content {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .hero-buttons {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .hero-visual {
    margin-top: 0px;
    padding: 20px 15px;
  }

  .btn {
    font-size: 14px;
  }

  .btn-text {
    padding: 0 6px;
    font-weight: 500;
  }

  .btn-icon {
    width: 30px;
    height: 30px;
  }

  .btn-primary {
    padding: 4px 14px;
  }

  .email-section .features-grid .row > .col-lg-1 {
    display: none;
  }

  .features-grid .feature-card {
    padding: 20px;
  }

  .gridIQ-section .features-grid .feature-card {
    padding: 15px;
    font-size: 14px;
  }

  .gridIQ-section .features-grid .feature-card h4 {
    font-size: 14px;
  }

  .email-section .feature-card {
    border: 1px solid #ededed;
    padding: 20px 15px;
    align-items: flex-start;
    text-align: left;
  }

  .email-section .feature-card h4 {
    font-size: 16px;
  }

  .icon-text-list li {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .section-flex-item div {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .section-content-bold {
    font-size: 14px;
    font-weight: 700;
  }

  :not(.not-border-right).email-section .feature-card::after {
    display: none;
  }

  .platform-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 10px;
    border-radius: 20px;
  }

  .platform-text {
    font-size: 16px;
  }

  .platform-footer::before {
    border-radius: 20px;
  }

  .footer {
    padding: 60px 0 0;
  }

  .footer-top {
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px 0;
  }

  .footer-bottom::before {
    left: 0;
    right: 0;
  }

  .footer-right {
    margin-left: 0;
  }

  .footer-right-top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-left {
    border-right: none;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-subscribe {
    max-width: 100%;
  }

  .cta-wrapper {
    margin-top: 30px;
    align-items: flex-start;
  }

  .cta-subtext {
    text-align: center;
  }

  .bottom-features-grid {
    margin-top: 30px;
  }

  .flag-section {
    position: static;
    bottom: auto;
    z-index: auto;
  }

  .flag-content {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .flag-card {
    justify-content: flex-start;
  }

  .flag-bg,
  .blue-bg {
    display: none;
  }

  .gridIQ-section {
    text-align: left;
    padding-bottom: 50px;
    padding-top: 30px;
  }

  .gridiq-architecture {
    text-align: center;
  }

  .email-content img {
    height: 40px;
    margin: 0 auto;
  }

  .gridiq-architecture img {
    height: 40px;
  }

  .arrow-desktop {
    display: none;
  }

  .arrow-mobile {
    display: block;
    margin: auto;
  }

  .energy-assets .line-main {
    display: none;
  }

  .energy-assets .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .energy-assets .row > [class*="col-"] {
    width: 100%;
    padding: 0;
    flex: none;
    max-width: none;
  }

  .asset-item::before,
  .asset-item::after {
    display: none;
  }

  .asset-text {
    font-size: 14px;
  }

  .asset-icon {
    width: 60px;
    height: 60px;
  }

  .assets-title {
    margin-bottom: 66px;
  }

  .gridIQ-card {
    align-items: center;
  }
  .gridIQ-card p {
    text-align: center;
  }

  .grid-card-top {
    font-size: 14px;
    font-weight: 700;
  }

  .about-image {
    display: block;
  }

  .sovereignty-bg {
    background-image: none;
  }

  .flag-section {
    padding: 0;
  }

  .approach-bg {
    background-image: none;
    padding: 50px 0;
  }

  .model-bg {
    background-image: none;
    padding: 50px 0;
    padding-bottom: 30px;
  }

  .infrastructure-bg {
    background-image: none;
    padding: 50px 0;
  }

  .where-bg {
    background-image: none;
    padding: 50px 0;
  }

  .who-bg {
    background-image: none;
    padding: 50px 0;
  }

  .model-img {
    margin-top: 50px;
    display: block;
  }

  .power-bg {
    background-image: none;
    padding: 50px 0;
  }

  .orche-bg {
    background-image: none;
    padding: 50px 0;
  }

  .orche-bg .model-img {
    margin-top: 0px;
  }

  .built-bg {
    background-image: none;
    padding: 50px 0;
  }

  .gridIQ-img {
    display: none;
  }

  .infrastructure-bg .model-img {
    margin-top: 15px;
  }

  .section-flex {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .section-flex-item.where-flex-item.infrastructure-flex-item {
    margin: 15px 0;
  }

  .infra-item {
    padding: 15px;
  }

  .infra-item svg {
    height: 32px;
  }

  .item-head {
    font-size: 16px;
  }

  .infrastructure-content {
    font-size: 14px;
  }

  .section-flex-item.where-flex-item {
    padding: 15px;
    margin: 15px 0;
  }

  .where-flex-item .icon-text-list li {
    padding-left: 0px;
    margin-bottom: 10px;
    gap: 15px;
  }

  .where-flex-item .icon-text-list.icon-list-mb li {
    margin-bottom: 15px;
  }

  .card-top-nm {
    gap: 10px;
  }

  .problem-section {
    padding: 30px 0;
  }

  .problem-footer {
    flex-direction: column;
    padding: 20px 15px;
    gap: 15px;
    align-items: flex-start;
  }

  .platform-item {
    display: none;
  }

  .origin-bg {
    background-image: url(../image/mobile/BG_3.jpg);
    background-position: bottom;
    padding-bottom: 250px;
  }

  .global-bg {
    background-image: url(../image/mobile/BG_4.jpg);
    background-position: bottom;
    padding-bottom: 250px;
  }

  .scale-bg {
    background-image: url(../image/mobile/BG_5.jpg);
    background-position: bottom;
    padding-bottom: 200px;
  }

  .dark-blue-bg {
    background: #f7f9fb;
  }

  .about-content {
    padding-right: 0px;
  }

  .banner-bg {
    background-image: url(../image/mobile/BG_10.jpg);
    background-position: center;
  }

  /* Engagement Section Mobile */
  .engagement-section {
    padding: 50px 0;
    padding-bottom: 0;
  }

  .engagement-top {
    flex-direction: column;
    gap: 40px;
  }

  .engagement-left,
  .engagement-right {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .engagement-divider {
    width: 100%;
    height: 1px;
  }

  .engagement-section .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .section-divider-line {
    display: none;
  }

  .engage-list-content h4 {
    font-size: 16px;
  }

  .engage-list-content p {
    font-size: 14px;
  }

  .engagement-left .section-body p {
    font-size: 14px;
  }

  .engage-model-title {
    font-size: 16px;
  }

  .engage-model-desc {
    font-size: 14px;
  }

  .engage-model-diagram {
    min-height: auto;
  }

  .engagement-bottom {
    padding-bottom: 0;
  }

  .engage-list-item {
    padding: 24px 0;
  }

  .engagement-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Commercial Models Mobile */
  .commercial-bg {
    padding-top: 15px;
    padding-bottom: 0px;
  }

  .commercial-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px 0;
  }

  .commercial-card {
    padding: 15px;
  }

  .commercial-card-icon {
    margin-bottom: 10px;
  }

  .commercial-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .commercial-card-desc {
    font-size: 14px;
  }

  .commercial-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 12px;
  }

  .br-desktop {
    display: none;
  }

  .commercial-banner-text {
    font-size: 14px;
  }

  /* HOW WE DELIVER Mobile */
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 15px 0;
  }

  .delivery-card {
    padding: 24px 20px;
  }

  .delivery-step {
    font-size: 20px;
  }

  .delivery-title {
    font-size: 22px;
  }

  .delivery-subtitle {
    font-size: 15px;
  }

  .delivery-desc {
    font-size: 14px;
  }

  .orche-card {
    gap: 10px;
    margin-top: 15px;
  }

  .text-top {
    font-size: 16px;
  }

  .text-bottom {
    font-size: 14px;
  }
}
