.hero {
  position: relative;
  height: 100vh;
  max-height: 800px;
  /* padding-top: 2rem; */
   overflow: hidden; 
}

.swiper-pagination-bullet {
  background-color: var(--primary);
}

.hero-bg {
  position: relative;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* filter: brightness(0.8);
  opacity: 0.8; */
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

.hero-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  inset: 0;
  z-index: 5;
  /* padding-bottom: 0; */
  padding: 0 6vw;
  /* overflow-y: auto; */
  /* -webkit-overflow-scrolling: touch; */
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__heading h1 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin: 0.5rem 0;
  color: white;
}

.hero__heading p {
  color: #c5c5c5;
}

.hero__heading .btn--ghost {
  color: white;
}

.hero__heading .btn--ghost:hover {
  color: var(--primary);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}


.hero__slider {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem 1.5rem 1rem;
  border-radius: 32px;
  border: 1px solid var(--border);
  position: relative;
  /* overflow: hidden; */
  width: 100%;
  min-height: 220px;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.08);
}

.hero__slider .swiper-wrapper {
  display: flex;
  padding-bottom: 1rem;
}

.hero__slider .swiper-slide {
  height: 300px !important;
  padding: 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.hero-card {
  /*padding: 1.5rem;*/
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(54, 153, 102, 0.08), rgba(255, 102, 0, 0.05));
}
.hero-card.flex-row{
    flex-direction: row;
    gap: 20px;
    align-items: center;
}
.hero-card.flex-row .hero-card-content{
    display: flex;
    flex-direction: column;
    gap: 20px;-
}
.hero-card h3 {
  /*margin: 0 0 0.5rem;*/
  height: fit-content;
}
.hero__slider .swiper-slide img{
    width: auto;
    height: 100%;
    aspect-ratio: 1 / 1;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: centers;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  /* border: 1px solid var(--border); */
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0px 35px rgba(15, 23, 42, 0.2);
}

.hero__stats strong {
  font-size: 2rem;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 4rem 0;
}

.showcase__item {
  min-height: 200px;
  border-radius: 24px;
  overflow: visible;
}

.showcase__item.flip-container {
  height: 100%;
  min-height: 200px;
}

.showcase__item .flip-card {
  height: 100%;
  min-height: 200px;
}

.showcase__item .flip-card-front,
.showcase__item .flip-card-back {
  padding: 2rem;
  border-radius: 24px;
  /* border: 1px solid var(--border); */
  background: #ffffff;
  /* box-shadow: 0 0px 10px rgba(15, 23, 42, 0.1); */
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.showcase__item .flip-card-front p {
  margin: 0 0 0.5rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 600;
}

.showcase__item .flip-card-front h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: var(--fg);
}

.showcase__item .flip-card-front span {
  color: var(--muted);
  font-size: 0.9rem;
}

.showcase__item .flip-card-back {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  border-color: transparent;
}

.showcase__item .flip-card-back h3 {
  /*margin: 0 0 1rem;*/
  font-size: 1.3rem;
  color: #ffffff;
}

.showcase__item .flip-card-back p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.showcase__item .flip-card-back ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.showcase__item .flip-card-back ul li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-left: 1.5rem;
}

.showcase__item .flip-card-back ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section-head p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--secondary);
}

.section-head h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.section-desc {
  max-width: 600px;
  color: var(--muted);
}

.products {
  margin-bottom: 4rem;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* 兼容原有的 .tab 类（如果其他地方还在使用） */
.tab {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
}

.tab.active {
  border-color: transparent;
  background: rgba(54, 153, 102, 0.2);
}

/* Product Tabs Content 样式 */
.product-tabs-content {
  position: relative;
  /*min-height: 400px;*/
}

.product-tabs-content .tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(10px);
}

.product-tabs-content .tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.product-grid,
.application-grid,
.project-grid,
.news-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.news-grid{
  grid-template-columns: repeat(3, minmax(240px, 1fr)) !important; 
}
.product-grid{
  grid-template-columns: repeat(4, minmax(240px, 1fr));
}
.application-grid{
  grid-template-columns: repeat(2, minmax(240px, 1fr));  
}

.application-card,
.project-card {
  padding: 1.75rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--card);
  min-height: 200px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Application Card - 3D倾斜和光晕效果 */
.application-card {
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  min-height: 300px;
  justify-content: center;
}
.application-card-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
}
.application-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(54, 153, 102, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.application-card h3{
    color: var(--secondary-light);
}
.application-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 28px 56px rgba(255, 102, 0, 0.15), 0 0 40px rgba(255, 102, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.2);
}

.application-card:hover::before {
  opacity: 1;
}

.application-card:hover h3 {
  color: var(--secondary);
  transition: color 0.3s ease;
  transform: translateZ(10px);
}

/* Project Card - 图片缩放和内容滑入效果 */
.project-card {
  cursor: pointer;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 153, 102, 0.05), rgba(255, 102, 0, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 24px;
}

.project-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 24px 24px;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px rgba(54, 153, 102, 0.2), 0 0 0 1px rgba(54, 153, 102, 0.15);
  border-color: rgba(54, 153, 102, 0.25);
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover::after {
  transform: scaleX(1);
  animation: gradient-shift 2s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.project-card:hover h3 {
  color: var(--primary);
  transform: translateY(-2px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover p {
  color: var(--fg);
  transition: color 0.3s ease;
}

.project-card:hover span {
  color: var(--secondary);
  transform: translateX(6px) translateY(-2px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}

/* News Grid Article - 滑动和渐变叠加效果 */
.news-grid article {
  cursor: pointer;
}

.news-grid article::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(54, 153, 102, 0.05), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.news-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(54, 153, 102, 0.12), 0 0 0 1px rgba(54, 153, 102, 0.08);
  border-color: rgba(54, 153, 102, 0.15);
}

.news-grid article:hover::before {
  left: 100%;
}

.news-grid article:hover .tag {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.news-grid article:hover h3 {
  color: var(--primary);
  transition: color 0.3s ease;
}

.product-card span {
  display: block;
  margin-top: 1rem;
  color: var(--secondary);
}

.applications {
  margin-bottom: 4rem;
}

.about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__badge {
  position: absolute;
  top: -2rem;
  left: -1rem;
  background: var(--secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
}

.about__cover {
  border-radius: 32px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(54, 153, 102, 0.16), rgba(255, 255, 255, 0.9));
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

.about__video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about__video-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.about__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
}

.about__video-overlay span {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__video button {
  margin-top: 0;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 90vw);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  background: #000;
}

.video-modal__player {
  display: block;
  width: 100%;
  height: auto;
}

.video-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
}

.video-modal__close:hover {
  opacity: 0.8;
  transform: rotate(90deg);
}

.about__content p:first-child {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--secondary);
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  color: var(--primary);
  font-weight: 700;
  gap: 0.75rem;
}

.support {
  margin-bottom: 4rem;
}

.timeline {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  gap: 1.5rem;
}

.timeline__item {
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
}

.timeline__item:hover {
  transform: translateY(-8px) translateX(8px);
  box-shadow: 0 28px 56px rgba(54, 153, 102, 0.15), 0 0 0 1px rgba(54, 153, 102, 0.1);
}


.timeline__item:hover h3 {
  color: var(--primary);
  transform: translateX(4px);
  transition: all 0.3s ease;
}

.timeline__item:hover p {
  color: var(--fg);
  transition: color 0.3s ease;
}

.timeline__media {
  width: 100%;
  height: 140px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(54, 153, 102, 0.12), rgba(255, 102, 0, 0.08));
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.04);
}

.timeline__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline__body span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: rgba(54, 153, 102, 0.12);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.timeline__item:hover span {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(54, 153, 102, 0.3);
}

.projects {
  margin-bottom: 4rem;
}

.project-card span {
  color: var(--secondary);
}

.news {
  margin-bottom: 4rem;
}

.news-grid article .tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.partners {
  margin-bottom: 4rem;
}
.frontpage-partners{
  margin-bottom: 1rem;
}
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.logo-wall span {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.cta {
  padding: 3rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(54, 153, 102, 0.12), rgba(255, 102, 0, 0.1));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  overflow: hidden;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta__image {
  width: 100%;
  /* max-width: 320px; */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  border: 1px solid var(--border);
}

.cta__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__form {
  display: grid;
  gap: 1rem;
}

.cta__form input,
.cta__form textarea {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--fg);
  font: inherit;
}

.cta__form input::placeholder,
.cta__form textarea::placeholder {
  color: var(--muted);
}



/* 移动端适配 */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 600px;
    max-height: none;
    position: relative;
  }

  .hero-container {
    padding: 2rem 4vw 3rem;
    height: auto;
    overflow: visible;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__heading {
    text-align: center;
  }

  .hero__heading h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__slider {
    padding: 2rem;
    min-height: 180px;
  }

  .hero__slider .swiper-slide {
    padding: 2rem;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .hero__stats strong {
    font-size: 1.5rem;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 3rem 0;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .about__badge {
    top: -1rem;
    left: 0;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-head .btn {
    width: 100%;
    justify-content: center;
  }

  .product-grid,
  .application-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .product-tabs {
    gap: 0.5rem;
  }

  .product-tabs .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .tab {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .timeline__item {
    grid-template-columns: 120px 1fr;
  }

  .timeline__media {
    height: 120px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .cta {
    padding: 2rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .logo-wall {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 0.75rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__bottom .social {
    flex-direction: row;
    justify-content: center;
  }

  .footer-mobile-hideen {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    height: auto;
  }

  .hero-bg {
    height: 100vh;
    min-height: 1200px;
  }

  .hero-container {
    padding: 1.5rem 4vw 2rem;
    height: auto;
    overflow: visible;
  }

  .hero__content {
    gap: 1.5rem;
  }

  .hero__heading h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin: 0.75rem 0;
  }

  .hero__heading p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.5rem 0;
  }

  .hero__heading p:first-of-type {
    margin-top: 0;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__slider {
    padding: 1.5rem;
    min-height: 160px;
    border-radius: 24px;
  }

  .hero__slider .swiper-slide {
    padding: 1.5rem;
  }

  .hero-card {
    padding: 1.25rem;
  }

  .hero-card h3 {
    font-size: 1.1rem;
  }

  .hero-card p {
    font-size: 0.9rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
  }

  .hero__stats>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero__stats strong {
    font-size: 1.75rem;
    display: block;
  }

  .hero__stats span {
    font-size: 0.9rem;
    display: block;
  }

  .showcase {
    margin: 2rem 0;
    gap: 1rem;
  }

  .showcase__item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .showcase__item .flip-card-front,
  .showcase__item .flip-card-back {
    padding: 1.5rem;
    min-height: 250px;
    width: 100%;
    box-sizing: border-box;
  }

  .showcase__item .flip-card-front h3 {
    font-size: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .showcase__item .flip-card-front p,
  .showcase__item .flip-card-front span {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .section-head h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .section-head p {
    font-size: 0.8rem;
  }

  .section-desc {
    font-size: 0.9rem;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .products {
    margin-bottom: 3rem;
  }

  .product-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
  }

  .product-tabs::-webkit-scrollbar {
    display: none;
  }

  .product-tabs .nav-link {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .tab {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .product-grid,
  .application-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-item {
    width: 100%;
    max-width: 100%;
  }

  .product-item__image {
    height: 180px;
  }

  .product-item__content {
    padding: 1.25rem;
  }

  .product-item__title {
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .application-card,
  .project-card {
    padding: 1.5rem;
    min-height: 250px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .application-card h3,
  .project-card h3 {
    font-size: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .application-card p,
  .project-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about {
    margin-bottom: 3rem;
  }

  .about__cover {
    padding: 1.5rem;
  }

  .about__content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 10px 0;
  }

  .about__content p {
    font-size: 0.95rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about__list {
    gap: 0.6rem;
  }

  .about__list li {
    font-size: 0.9rem;
  }

  .about__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .about__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .timeline__media {
    height: 180px;
  }

  .timeline__body span {
    margin-bottom: 0.5rem;
  }

  .timeline__item {
    padding: 1.25rem;
  }

  .timeline__item span {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .timeline__item h3 {
    font-size: 1.1rem;
  }

  .timeline__item p {
    font-size: 0.9rem;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .news-item__content {
    padding: 1.5rem;
  }

  .news-item__title {
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
  }

  .news-item__meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .logo-wall {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 0.75rem;
  }

  .logo-wall span {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .cta {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .cta__content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cta__content p {
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cta__form input,
  .cta__form textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .cta__form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
  }

  /* .hero-bg {
    min-height: 400px;
  } */

  .hero-container {
    padding: 1rem 4vw 1.5rem;
  }

  .hero__heading {
    margin-bottom: 1rem;
  }

  .hero__heading h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero__heading p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 1rem;
  }

  .hero__slider {
    padding: 1.25rem;
    margin-top: 1rem;
  }

  .hero__slider .swiper-slide {
    padding: 1.25rem;
  }

  .hero-card {
    padding: 1rem;
  }

  .hero-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .hero-card p {
    font-size: 0.85rem;
  }

  .hero__stats {
    padding: 1rem;
    margin-top: 1rem;
  }

  .hero__stats strong {
    font-size: 1.5rem;
  }

  .hero__stats span {
    font-size: 0.85rem;
  }

  .showcase__item .flip-card-front,
  .showcase__item .flip-card-back {
    padding: 1.25rem;
  }

  .product-item__image {
    height: 160px;
  }

  .application-card,
  .project-card {
    padding: 1.25rem;
  }

  .about__badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .cta {
    padding: 1.25rem;
  }
}
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  /*backdrop-filter: blur(16px);*/
  /*-webkit-backdrop-filter: blur(16px);*/
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hero-feature:hover {
  transform: translateX(-10px);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(54, 153, 102, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(54, 153, 102, 0.2);
}

.hero-feature:hover::before {
  transform: translateX(100%);
}

.hero-feature__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(54, 153, 102, 0.2), rgba(54, 153, 102, 0.05));
  border: 1px solid rgba(54, 153, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-feature:hover .hero-feature__icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 0 15px rgba(54, 153, 102, 0.4);
}

.hero-feature__icon svg {
  width: 24px;
  height: 24px;
}

.hero-feature__content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-feature__content h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-feature__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.4;
}