.home-hero {

  position: relative;

  /* 用 svh 固定首屏高度，避免刷新时 dvh/vh 变化导致页面上跳 */
  min-height: 100vh;

  padding: 132px 0 24px;

  color: #ffffff;

  background: #07162d url("../images/hero-bg.png") center center / cover no-repeat;
}

body.home-page .section.home-hero {
  padding-bottom: 0;
}

.home-page {
  overflow-x: hidden;

}

html:has(body.home-page) {
  scroll-behavior: auto;
}

@supports (height: 100svh) {
  .home-hero {
    min-height: max(952px, 100svh);
  }
}

.home-hero__slides {

  position: absolute;

  inset: 0;

}



.home-hero__slide {

  position: absolute;

  inset: 0;

  opacity: 0;

  transition: opacity 0.6s ease;

  background: #07162d center center / cover no-repeat;

}



.home-hero__slide.is-active {

  opacity: 1;

}



.home-hero__video {

  position: absolute;

  inset: 0;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition: opacity 0.45s ease;

}



.home-hero__video.is-active {

  opacity: 1;

  visibility: visible;

}



.home-hero__video-el {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.home-hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, rgba(0, 8, 22, 0.72) 0%, rgba(0, 17, 44, 0.32) 42%, rgba(0, 18, 45, 0.1) 100%);

}



.hero-overlay {

  position: absolute;

  inset: auto 0 0;

  height: 180px;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(2, 13, 29, 0.2) 100%);

}



.hero-content {

  position: relative;

  z-index: 1;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-height: max(712px, calc(100svh - 216px));

  gap: 56px;

  padding-bottom: 130px;

}



.hero-copy {

  position: absolute;

  inset: 0 auto auto 0;

  max-width: 780px;

  opacity: 0;

  transform: translateY(16px);

  pointer-events: none;

  transition: opacity 0.45s ease, transform 0.45s ease;

}



.hero-copy.is-active {

  position: relative;

  opacity: 1;

  transform: translateY(0);

  pointer-events: auto;

}



.home-hero__copy-stack {

  position: relative;

  min-height: 280px;

}



.hero-title {

  display: flex;

  flex-wrap: wrap;

  align-items: baseline;

  gap: 0 10px;

  margin-bottom: 20px;

  font-size: clamp(46px, 5vw, 72px);

  line-height: 1.08;

  font-weight: 400;

}



.hero-title strong {

  color: var(--color-primary);

  font-weight: 500;

}



.hero-title__name {

  color: #ffffff;

  font-weight: 500;

}



.hero-subtitle {

  margin-bottom: 28px;

  color: rgba(255, 255, 255, 0.85);

  font-size: 22px;

  line-height: 1.55;

}



.hero-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 16px;

  margin-top: 20px;

  margin-left: 0;

}



.home-hero__controls {

  position: relative;

  z-index: 1;

  display: flex;

  align-items: center;

  gap: 16px;

}



.home-hero__dots {

  display: flex;

  align-items: center;

  gap: 10px;

}



.home-hero__dot {

  width: 12px;

  height: 12px;

  border: 0;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.32);

  cursor: pointer;

}



.home-hero__dot.is-active {

  background: var(--color-primary);

}



.home-hero__nav {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 42px;

  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.22);

  border-radius: 999px;

  background: rgba(7, 22, 45, 0.42);

  cursor: pointer;

}



.home-hero__nav img {

  filter: brightness(0) invert(1);

}



.home-hero__nav[data-hero-prev] img {

  transform: rotate(180deg);

}



.hero-highlights {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 18px;

  margin-top: 0;

  position: absolute;

  left: 0;

  right: 0;

  bottom: 18px;

  z-index: 2;

}



.hero-highlight {

  display: grid;

  grid-template-columns: 48px 1fr;

  gap: 10px;

  align-items: center;

  min-height: 66px;

  padding: 10px 12px;

  border-radius: 10px;

  border: 1px solid rgba(170, 205, 238, 0.34);

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);

  backdrop-filter: blur(1px); 

  transition: transform 0.26s ease, border-color 0.26s ease;

  cursor: pointer;

}



.hero-highlight.is-active {

  border-color: var(--color-primary);

  box-shadow: 0 0 0 1px rgba(0, 178, 255, 0.25) inset;


}



.hero-highlight__icon {

  display: inline-flex;

  align-items: center;

  justify-content: center;

}




.hero-highlight__title {

  margin: 0 0 1px;

  color: #ffffff;

  font-size: 18px;

  line-height: 1.2;

  font-weight: 500;

}



.hero-highlight__desc {

  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 12px !important;

  line-height: 1.25;

}



.hero-highlight h2 {

  margin-bottom: 4px;

  font-size: 18px;

  line-height: 1.4;

  font-weight: 500;

}



.hero-highlight p {

  color: rgba(255, 255, 255, 0.72);

  font-size: 18px;

  line-height: 1.45;
  font-weight: 400;

}


.hero-scroll {

  position: absolute;

  left: 50%;

  bottom: 18px;

  z-index: 1;

  width: 24px;

  height: 40px;

  margin-left: -12px;

  border: 1px solid rgba(255, 255, 255, 0.6);

  border-radius: 999px;

}



.hero-scroll::after {

  content: "";

  position: absolute;

  top: 8px;

  left: 50%;

  width: 4px;

  height: 9px;

  margin-left: -2px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.88);

  animation: scroll-indicator 1.6s infinite;

}



.card-grid--services {

  grid-template-columns: repeat(4, minmax(0, 1fr));

}



.service-card,

.advantage-card,

.story-card,

.station-card,

.cert-gallery__item {

  overflow: hidden;

}



.service-card__image,

.advantage-card__image,

.story-card__image,

.station-card__image,

.contact-visual img,

.cert-gallery__item img {

  width: 100%;

  height: auto;

  object-fit: cover;

}



.service-card__image {

  aspect-ratio: 300 / 192;

}



.service-card__body {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 14px;

  padding: 24px;

}



.service-card h3,

.advantage-card h3,

.story-card h3,

.station-card h3,

.value-card h3,

.cert-tile h3,

.contact-form-wrap h3,

.emergency-card h3 {

  font-size: 20px;

  line-height: 1.4;

  font-weight: 400;

}



.service-card p,

.advantage-card p,

.station-card p,

.value-card p,

.story-card li span {

  color: var(--color-muted);

  font-size: 16px;

  line-height: 1.6;

}



.card-grid--advantages {

  grid-template-columns: repeat(3, minmax(0, 1fr));

}



.advantage-card {
  border: 1px solid #E5E7EB;
  background: var(--color-panel-soft);

}



.advantage-card__image {

  aspect-ratio: 404 / 224;

}



.advantage-card__body {

  display: flex;

  flex-direction: column;

  gap: 12px;

  padding: 24px;

}



.advantage-card__icon {

  display: inline-flex;

  align-items: center;

  justify-content: flex-start;

  width: 48px;

  height: 48px;

  border-radius: var(--radius-md);

  /* background: #00378b; */

  color: #ffffff;

}



.card-grid--stories {

  grid-template-columns: repeat(3, minmax(0, 404px));

  justify-content: space-between;

  gap: 34px;

}



.story-card__image {

  aspect-ratio: 404 / 256;

}



.story-card {

  min-height: 413px;

}



.story-card__link {

  display: block;

  height: 100%;

  color: inherit;

  text-decoration: none;

  cursor: pointer;

}



.story-card__body {

  display: flex;

  flex-direction: column;

  gap: 12px;

  padding: 24px;

}



.story-card__list {

  display: grid;

  gap: 8px;

}



.story-card__list li {

  display: flex;

  align-items: flex-start;

  gap: 8px;

}



.story-card__list img {

  margin-top: 1px;

  filter: var(--icon-green-filter);

}



.story-card li span {

  font-size: 14px;

  line-height: 20px;

}



.stats-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 16px;

  margin-bottom: 56px;

}



.stat-card {

  display: grid;

  place-items: center;

  min-height: 188px;

  text-align: center;

  /* background: var(--color-panel-soft); */

}



@media (hover: hover) and (pointer: fine) {

  .service-card,

  .advantage-card,

  .story-card,

  .station-card,

  .value-card,

  .stat-card,

  .hero-highlight {

    transition: transform 0.28s ease, box-shadow 0.28s ease;

    transform-origin: center center;

  }



  .service-card:hover,

  .advantage-card:hover,

  .story-card:hover,

  .station-card:hover,

  .value-card:hover,

  .stat-card:hover,

  .hero-highlight:hover {

    transform: scale(1.02);

  }

}



.stat-card strong {

  color: var(--color-primary);

  font-size: clamp(44px, 4vw, 64px);

  line-height: 96px;

  font-weight: 500;

}



.stat-card span {

  color: var(--color-muted);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  position: relative;
  top: -18px;
}



.brand-grid {

  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 20px;

}



.brand-card {

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 168px;

  background: linear-gradient(180deg, #EFF6FF 0%, #F1F7FF 14.29%, #F4F9FF 28.57%, #F6FAFF 42.86%, #F8FBFF 57.14%, #FAFCFF 71.43%, #FDFEFF 85.71%, #FFF 100%);

  color: var(--color-text);

  text-align: center;

  padding: 24px;

}



.brand-card span {

  font-size: 24px;

  line-height: 1.4;

  font-weight: 500;

}



.brand-card--empty {

  grid-column: 1 / -1;

  min-height: 120px;

  color: var(--color-muted);

  font-size: 18px;

}



.card-grid--stations {

  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-bottom: 32px;

}



.station-card__image {

  aspect-ratio: 404 / 283;

}



.station-card__body {

  display: flex;

  flex-direction: column;

  gap: 10px;

  padding: 20px;

}



.station-card__body h3 {

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: 18px;

}



.station-card__body h3 img {

  filter: var(--icon-green-filter);

}



.section-cta {

  display: flex;

  justify-content: center;

}



.home-emergency {

  background: #00378b url("../images/emergency-bg.jpg") center center / cover no-repeat;

}



.home-emergency::before {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 55, 139, 0.9);

}



.home-emergency .container {

  position: relative;

  z-index: 1;

}



.emergency-grid {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;

  margin-bottom: 28px;

}



.emergency-card {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 14px;

  min-height: 218px;

  padding: 32px 24px;

  border-radius: var(--radius-md);

  border: 1px solid rgba(255, 255, 255, 0.18);

  background: rgba(255, 255, 255, 0.1);

  text-align: center;

  backdrop-filter: blur(8px);

}



.emergency-card__icon {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  /* width: 64px;

  height: 64px;

  border-radius: 50%; */

  /* background: var(--color-primary); */

  color: #ffffff;

}



.advantage-card__icon img {

  /* filter: var(--header-scroll-icon-filter, brightness(0) saturate(100%) invert(100%)); */

}



.value-card>img {

  filter: var(--icon-green-filter);

}



.icon-badge img,

.cert-tile__icon img,

.contact-item__icon img {

  /* filter: var(--header-scroll-icon-filter, brightness(0) saturate(100%) invert(100%)); */

}



.service-card .icon-badge {

  line-height: 0;

  flex: 0 0 56px;

}



.service-card .icon-badge img {

  display: block;
  object-fit: contain;

}



.emergency-card h3 {

  color: #ffffff;

}



.emergency-card p {

  color: rgba(255, 255, 255, 0.82);

  font-size: 15px;

  line-height: 1.5;

}



.emergency-action {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 14px;

}



.btn--emergency {

  min-width: 396px;

}



body.home-page .btn--primary.btn--emergency,

body.home-page .btn--primary.btn--emergency:hover {

  background: var(--theme-default-color, #00378b);

}



.emergency-action p {

  color: rgba(255, 255, 255, 0.76);

  font-size: 14px;

}



.value-grid {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 16px 24px;

}



.value-card {

  display: flex;

  align-items: flex-start;

  gap: 16px;

  min-height: 100px;

  padding: 24px;

  /* border-left: 3px solid var(--theme-default-color, #00378b); */

}

.value-card__content {
  width: 100%;
}

.value-card__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.value-card__title img {
  flex: 0 0 auto;
}

.value-card__desc {
  margin-top: 6px;
  padding-left: 30px;
}



.value-card img {

  color: var(--color-primary);

  flex: 0 0 auto;

}



/* body.home-page .value-card > img {

  padding: 8px;

  border-radius: 10px;

  background: var(--theme-default-color, #00378b);

  filter: brightness(0) invert(1);

} */



/* body.home-page .social-item img {

  background: var(--theme-default-color, #00378b);

} */



.cert-top-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 18px;

}



.cert-row {

  width: 100%;

}



.cert-row--text {

  margin-bottom: 28px;

}



.cert-tile {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 16px;

  min-height: 172px;

  text-align: center;

  background: linear-gradient(180deg, #EFF6FF 0%, #F1F7FF 14.29%, #F4F9FF 28.57%, #F6FAFF 42.86%, #F8FBFF 57.14%, #FAFCFF 71.43%, #FDFEFF 85.71%, #FFF 100%);

}



.cert-tile__button,

.cert-gallery__button {

  width: 100%;

  border: 0;

  padding: 0;

  background: transparent;

  color: inherit;

  font: inherit;

  cursor: zoom-in;

}



.cert-tile__button {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 16px;

  min-height: 172px;

}



.cert-tile__button h3 {

  margin: 0;

}



.cert-tile__button:focus-visible,

.cert-gallery__button:focus-visible,

.cert-lightbox__close:focus-visible,

.cert-lightbox__backdrop:focus-visible {

  outline: 2px solid var(--color-primary);

  outline-offset: 4px;

}



.cert-tile__icon {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  /* width: 64px;

  height: 64px; */

  border-radius: 50%;

  /* background: var(--theme-default-color, #00378b); */

  /* color: #ffffff; */

}



.cert-gallery {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;

}



.cert-gallery__item {

  overflow: hidden;

}



.cert-gallery__button {

  display: block;

}



.cert-gallery__button img {

  display: block;

  width: 100%;

  height: auto;

  transition: transform 0.28s ease;

}



.cert-gallery__button:hover img,

.cert-gallery__button:focus-visible img,

.cert-tile__button:hover .cert-tile__icon,

.cert-tile__button:focus-visible .cert-tile__icon {

  transform: scale(1.04);

}



.cert-lightbox {

  position: fixed;

  inset: 0;

  z-index: 1200;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 24px;

}



.cert-lightbox[hidden] {

  display: none;

}



.cert-lightbox__backdrop {

  position: absolute;

  inset: 0;

  border: 0;

  background: rgba(10, 18, 34, 0.78);

}



.cert-lightbox__dialog {

  position: relative;

  z-index: 1;

  width: min(960px, 100%);

  max-height: calc(100vh - 48px);

  padding: 18px;

  border-radius: 28px;

  background: #ffffff;

  box-shadow: 0 24px 80px rgba(11, 30, 61, 0.24);

}



.cert-lightbox__close {

  position: absolute;

  top: 10px;

  right: 10px;

  width: 42px;

  height: 42px;

  border: 0;

  border-radius: 50%;

  background: rgba(8, 24, 56, 0.08);

  color: var(--color-text);

  font-size: 30px;

  line-height: 1;

  cursor: pointer;

}



.cert-lightbox__figure {

  margin: 0;

}



.cert-lightbox__image {

  display: block;

  width: 100%;

  max-height: calc(100vh - 140px);

  object-fit: contain;

  border-radius: 20px;

  background: #f4f7fb;

}



.cert-lightbox__caption {

  margin-top: 14px;

  color: var(--color-text);

  font-size: 18px;

  line-height: 1.5;

  text-align: center;

}



body.is-modal-open {

  overflow: hidden;

}



.contact-layout {

  display: grid;

  grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);

  gap: 50px;

  align-items: start;

}



.contact-info {

  display: flex;

  flex-direction: column;

  gap: 32px;

}



.contact-list {

  display: grid;

  gap: 24px;

}



.contact-item {

  display: grid;

  grid-template-columns: 48px 1fr;

  gap: 16px;

  align-items: start;

}



.contact-item__icon {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 48px;

  height: 48px;

  border-radius: var(--radius-md);

  background: #00378b;

  color: #ffffff;

}



.contact-item small {

  display: block;

  margin-bottom: 4px;

  color: var(--color-muted);

  font-size: 14px;

  line-height: 1.4;

}



.contact-item strong {

  display: block;

  color: var(--color-text);

  font-size: 18px;

  line-height: 1.6;

  font-weight: 400;

}



.contact-visual {

  overflow: hidden;

  position: relative;

}



.contact-visual figcaption {

  position: absolute;

  left: 20px;

  bottom: 20px;

  color: #ffffff;

  font-size: 18px;

  line-height: 1.4;

  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);

}



.contact-form-wrap {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  height: 660px;

  padding: 32px;

}



.contact-form-wrap h3 {

  margin-bottom: 18px;

}



.home-contact__form {

  display: flex;

  flex-direction: column;

  gap: 20px;

  width: 100%;

}



.home-contact__form .field input,

.home-contact__form .field textarea,

.home-contact__form .field select {

  color: var(--color-text);

}



.home-contact__form .field input::placeholder,

.home-contact__form .field textarea::placeholder {

  color: var(--color-muted);

  opacity: 1;

}



.btn--submit {

  margin-top: 6px;

}



.form-status {

  min-height: 24px;

  margin: 0;

  font-size: 14px;

  line-height: 1.6;

}



.form-status.is-success {

  color: #0f8a48;

}



.form-status.is-error {

  color: #c53b1b;

}



.form-status {

  min-height: 24px;

  margin: 0;

  font-size: 14px;

  line-height: 1.6;

}



.form-status.is-success {

  color: #0f8a48;

}



.form-status.is-error {

  color: #c53b1b;

}


/*新修改开始*/
/* 负边距仅作用于首屏 hero，避免整页上移后在视口底部露出白边 */
body.home-page .new-top21 {
  margin-top: 0;
}

body.home-page .home-hero {
  margin-top: -24px;
  width: 100%;
}
.hero-title__name p:nth-child(2){
  color: #ecf0f1;
  font-size: 24px;
  padding: 20px 0 20px 0;
}
.hero-title__name p:nth-child(1){
  line-height: 90px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.hero-highlight__icon img{
  width: 48px;
  height: 48px;
}
.reveal .section-line{
  border-radius: 0 !important;
}
.new-top21 .story-card h3{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 56px;
}
.new-top21 .story-card li{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.new-top21  .section-line{
  margin-top: 5px;
}
.hero-actions .btn--primary {
  box-shadow:0 2px 12px var(--color-primary)
}
@media (min-width: 969px) {
  .new-top21 .hero-highlights {
    bottom: 40px !important;
  }
}
.new-top21 .brand-card span{
  font-size: 36px;
  font-weight: 400;
}
.btn2 .btn{
  padding: 16px 50px;
  min-height: 70px;
}
.btn2 .btn span{
  font-size: 20px;
}
.btn2 p{
  color:rgba(255, 255, 255, 1)
}
.new-top21 .value-card__title img{
  width: 24px;
  height: 24px;
}
.new-top21 .value-card__desc{
  padding-left: 36px;
}
.new-top21 .cert-gallery,.new-top21 .cert-top-grid{
  gap: 32px;
}
.new-top21 .cert-tile__button h3{
  font-size: 18px;
}
.new-top21 .contact-item__icon img{
  width: 24px;
  height: 24px;
}

.new-top21 .field select ,
.new-top21 .field textarea::placeholder,
.new-top21 .field input::placeholder {
  color: #101828;
  opacity: 0.5; /* Firefox 默认透明度低，需显式设置 */
}

/* WebKit/Safari/旧版 Edge */
.new-top21 .field input::-webkit-input-placeholder {
  color: #101828;
  opacity: 0.5;
}

/* Firefox 19+ */
.new-top21 .field input::-moz-placeholder {
  color: #101828;
  opacity: 0.5;
  
}

/* Firefox 4–18 */
.new-top21 .field input:-moz-placeholder {
  color: #101828;
  opacity: 0.5;
}

/* IE 10–11 */
.new-top21 .field input:-ms-input-placeholder {
  color: #101828;
  opacity: 0.5;
}
.new-top21 .contact-form-wrap{
  box-shadow: 0 9px 7px rgba(214, 214, 214, 1); /* 外阴影 */
}
.new-top21 .container .section-cta .btn{
  padding: 16px 50px;
}
.new-top21 .btn2 p{
  opacity: 0.6;
}
.nav-link{
  font-weight: 400;
}
.nav-link.is-active{
  font-weight: 600;
  color: #fff;
}
/*新修改结束*/

@keyframes scroll-indicator {

  0% {

    opacity: 1;

    transform: translateY(0);

  }

  100% {

    opacity: 0;

    transform: translateY(12px);

  }

}



@media (min-width: 750px) and (max-width: 968px) {

  .card-grid--services,

  .card-grid--advantages,

  .card-grid--stories,

  .card-grid--stations,

  .cert-gallery,

  .brand-grid,

  .value-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }



  .hero-highlights,

  .stats-grid,

  .cert-top-grid,

  .emergency-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }



  .contact-layout {

    grid-template-columns: 1fr;

  }

}



@media (max-width: 968px) {

  body.home-page .home-hero {
    margin-top: 0;
  }

  .home-hero {

    min-height: auto;

    padding: 112px 0 32px;

  }



  .hero-content {

    min-height: auto;

    gap: 40px;

    padding-bottom: 0;

  }



  .hero-title {

    max-width: 680px;

    font-size: clamp(34px, 6.2vw, 46px);

  }



  .hero-subtitle {

    font-size: 16px;

    line-height: 1.5;

  }



  .hero-actions {

    margin-top: 18px;

    margin-left: 0;

  }



  .hero-highlights {

    position: static;

    left: auto;

    right: auto;

    bottom: auto;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    margin-top: 24px;

  }

  .new-top21 .hero-content {

    justify-content: flex-start;

    gap: 28px;

    padding-bottom: 32px;

  }

  .new-top21 .home-hero__copy-stack {

    min-height: auto;

  }

  .new-top21 .hero-highlights {

    position: static;

    left: auto;

    right: auto;

    bottom: auto;

    margin-top: 0;

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }



  .card-grid--services {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }



  .card-grid--advantages,

  .card-grid--stories,

  .card-grid--stations,

  .stats-grid,

  .brand-grid,

  .value-grid,

  .cert-top-grid,

  .cert-gallery,

  .emergency-grid,

  .contact-layout {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }



  .contact-layout {

    gap: 32px;

  }



  .brand-card {

    font-size: 26px;

  }

}



@media (max-width: 749px) {

  .home-hero {

    min-height: auto;

    padding: 180px 0 11rem;

    background-position: 62% center;

  }



  .hero-content {

    min-height: auto;

    gap: 36px;

    padding-bottom: 0;

  }

  .new-top21 .hero-content {

    min-height: calc(100svh - 180px);

    padding-bottom: 56px;

    justify-content: flex-start;

  }



  .hero-title {

    font-size: 32px;

    line-height: 1.18;

  }



  .hero-subtitle {

    font-size: 14px;

    line-height: 1.5;

  }



  .hero-actions {

    margin-top: 16px;

    margin-left: 0;

    gap: 12px;

  }



  .hero-actions .btn {

    min-height: 42px;

    padding: 10px 16px;

    font-size: 13px;

  }



  .hero-highlights,

  .card-grid--services,

  .card-grid--advantages,

  .card-grid--stories,

  .card-grid--stations,

  .stats-grid,

  .brand-grid,

  .value-grid,

  .cert-top-grid,

  .cert-gallery,

  .emergency-grid,

  .contact-layout {

    grid-template-columns: 1fr;

  }



  .hero-highlight {

    min-height: auto;

  }



  .hero-highlight__title {

    font-size: 15px;

    line-height: 1.2;

  }



  .hero-highlight__desc {

    font-size: 11px;

    line-height: 1.3;

  }



  .brand-card {

    min-height: 120px;

    font-size: 24px;

  }



  .btn--emergency {

    min-width: 100%;

  }



  .contact-form-wrap {

    height: auto;

    padding: 24px 20px;

  }
  .hero-title__name p:nth-child(1) span{
     font-size: 44px !important;
     line-height: 60px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  }
  .hero-title__name p:nth-child(2){
    padding: 10px 0 5px 0 !important;
  }
  .hero-title__name p:nth-child(2) span{
    color: #ecf0f1;
    font-size: 18px !important;
    
  }
  .new-top21 .btn2 .btn span{
    font-size: 14px;
  }
  .new-top21 .hero-title__name p:nth-child(1){
     line-height: 40px;
  }
  .new-top21 .hero-highlights{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    top: auto;
    margin-top: 0;
    height: auto;
  }
  .new-top21 .hero-highlight__icon,
  .new-top21 .hero-highlight__content{
    display: none !important;
  }
  .new-top21 .hero-highlight{
    display: block;
    flex: 0 0 auto;
    width: 24px;
    min-height: 0;
    height: 4px;
    padding: 0;
    margin: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 0;
    grid-template-columns: unset;
    overflow: hidden;
    cursor: pointer;
  }
  .new-top21 .hero-highlight.is-active{
    width: 32px;
    height: 4px;
    padding: 0 !important;
    background: var(--color-primary);
    box-shadow: none;
  }
  .new-top21 .reveal{
    opacity: 1 !important;
    transform: none !important;
    transition:none !important
  }

}