* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans TC', sans-serif;
}

body {
  background-color: #ffffff;
  color: #333333;
  overflow-x: clip;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 隱藏元素等待滾動動畫 */
.anim-element {
  opacity: 0;
}

/* ================= TOP BAR ================= */
.top-bar {
  background-color: #222222;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ================= HEADER & NAV ================= */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav a {
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
  position: relative;
}

nav a:hover {
  color: #d31212;
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  width: 100%;
  height: 800px;
  background: url('https://placehold.co/1920x800/eeeeee/aaaaaa?text=Hero+Banner+Image') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  max-width: 600px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 40px;
  font-weight: 700;
}


/* ================= SECTION TITLE ================= */
.sec-title-wrap {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.sec-title-wrap::before, .sec-title-wrap::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #C7C7C7;
}

.sec-title-wrap h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
    color: #000;
}

.sec-title-wrap .sub-title {
    color: #d31212;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}

.sec-title-wrap p {
    font-size: 16px;
    color: #888;
    margin-top: 10px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d31212;
    color: #d31212;
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 18px;
    margin-top: 80px;
    transition: all 0.3s;
    background: #fff;
    gap: 10px;
    font-weight: 700;
}

.btn-view-more iconify-icon {
    color: #000;
    transition: color 0.3s;
}

.btn-view-more:hover {
    background: #d31212;
    color: #fff;
}

.btn-view-more:hover iconify-icon {
    color: #fff;
}

/* ================= ADVANTAGES ================= */
.advantages {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.adv-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 10px 1px rgba(0,0,0,0.04);
    position: relative;
    top: 0;
    transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.adv-card:hover {
    top: -7px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

.adv-card.red {
    background: #be1212;
    color: white;
    border: none;
}

.adv-card h3 {
    font-size: 22px;
    font-weight: 700;
    z-index: 1;
}
.adv-card img {
  margin-top: 15px;
  z-index: 1;
  width: 100px;
  align-self: flex-end;
}

.adv-card.tag-top::before {
  content: '獨家專利';
  position: absolute;
  top: 20px;
  left: 15px;
  background: #fdc106;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

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

/* ================= NEWS & BLOG ================= */
.news-blog-section {
    padding: 50px 0;
}

.news-header {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.news-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E0E0E0;
}

@keyframes redLinePulse {
  0% { width: 10%; }
  50% { width: 30%; }
  100% { width: 10%; }
}

.news-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d31212;
  z-index: 1;
  transition: width 2.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.news-header.animate__animated::before {
  width: 10%;
  animation-fill-mode: both;
}

.header-news.animate__animated::before { animation: redLinePulse 10s ease-in-out infinite 3s; }
.header-blog.animate__animated::before { animation: redLinePulse 16s ease-in-out infinite 3s; }
.header-products.animate__animated::before { animation: redLinePulse 12s ease-in-out infinite 3s; }
.header-insp.animate__animated::before { animation: redLinePulse 15s ease-in-out infinite 3s; }

.news-header span { color: #d31212; font-weight: bold; font-size: 18px; display: block; margin-bottom: 5px;}
.news-header h2 {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.2;
}
.news-header P {
  font-size: 16px;
  color: #666;
  margin-top: 5px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    transform: translateX(10px);
}

.news-img {
  width: 150px;
  height: 150px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #E7E7E7; 
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.news-date {
    font-size: 14px;
    color: #888;
    min-width: 80px;
}

.news-tag {
  background: #d31212;
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  font-style: italic;
}
.news-tag.gray { background: #777;}

.news-title {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #d31212;
}

.news-title h3{
  color: #2d2d2d;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.news-title p{
  color: #737373;  
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #fff;
    display: block;
    position: relative;
    top: 0;
    transition: all 0.3s ease;
}

.blog-card:hover {
    top: -10px;
}

.blog-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.blog-card .date {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ================= PRODUCTS ================= */
.products {
  padding: 80px 0;
  background-color: #F9F9F9;
  position: relative;
  overflow: hidden;
}

.bg-text {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 250px;
  font-weight: 900;
  color: rgba(0,0,0,0.02);
  pointer-events: none;
  z-index: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-item {
    text-align: center;
    display: block;
}

.product-img-box {
  margin-bottom: 15px;
  transition: transform 0.3s;
  border: 1px solid #E3E3E3;
  border-radius: 10px;
}

.product-img-box:hover {
    transform: translateY(-10px);
}

.product-img-box img {
    margin: 0 auto;
    object-fit: contain;
  border-radius: 10px;
}

.product-item h4 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

/* ================= CASE STUDY ================= */
.case-study {
    padding: 80px 0;
}

.case-header {
    margin-bottom: 30px;
}
.case-header h2 {
    font-size: 36px;
    font-weight: bold;
    border-left: 4px solid #d31212;
    padding-left: 15px;
    margin-bottom: 15px;
}
.case-header p {
    font-size: 16px;
    color: #555;
}

.case-container {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.case-sidebar {
    background: #be1212;
    color: #fff;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.case-sidebar h3 {
    writing-mode: vertical-rl;
    letter-spacing: 5px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.case-sidebar span {
    writing-mode: vertical-rl;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.case-slider-wrap {
    flex: 1;
    padding: 20px;
    position: relative;
    overflow: hidden;
    min-width: 0;
    width: 0; /* 強制 Flex 子元素從 0 開始計算寬度，避免內容撐開 */
}

.caseSwiper {
    width: 100%;
    overflow: hidden;
}

.case-slide {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    width: 100%;
}

.case-slide img {
    width: 100%;
    object-fit: cover;
}

.case-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-info div { font-size: 18px; }
.case-info span {
  font-size: 16px;
  opacity: 0.8;
  color: #ffba19;
  font-weight: bold;
}

/* ================= SWIPER CUSTOM ================= */

/* Banner Swiper Buttons */
.banner .swiper-button-next,
.banner .swiper-button-prev {
    background: rgba(0,0,0,0.1);
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
    font-size: 24px;
}

.banner .swiper-button-next:hover,
.banner .swiper-button-prev:hover {
    background: rgba(211, 18, 18, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.banner .swiper-button-prev { left: 40px !important; right: auto !important; }
.banner .swiper-button-next { right: 40px !important; left: auto !important; }

/* Case Slider Buttons (依附圖) */
.case-slider-wrap .swiper-button-next, 
.case-slider-wrap .swiper-button-prev {
    color: #333;
    background: #f5f5f5;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: none;
    top: auto;
    bottom: 20px;
    margin-top: 0;
    transition: all 0.3s ease;
}

.case-slider-wrap .swiper-button-next:after, 
.case-slider-wrap .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

.case-slider-wrap .swiper-button-prev { left: 20px !important; transform: none; }
.case-slider-wrap .swiper-button-next { left: 75px !important; transform: none; }

.case-slider-wrap .swiper-button-next:hover, 
.case-slider-wrap .swiper-button-prev:hover {
    background: #e0e0e0;
    color: #000;
}

/* Case Slider Pagination */
.case-slider-wrap .swiper-pagination {
    bottom: 35px !important;
    left: 140px !important;
    width: auto !important;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-slider-wrap .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s;
}

.case-slider-wrap .swiper-pagination-bullet-active {
    background: #333;
    width: 10px;
    height: 10px;
}

.case-slider-wrap { padding-bottom: 85px; }


/* ================= INSPECTION ================= */
.inspection {
    padding: 80px 0;
    background: #F9F9F9;
}

.insp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.insp-card {
  background: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.insp-num {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: #be1212;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(230,0,18,0.3);
    z-index: 2;
}

.insp-num::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 30px;
    height: 30px;
    background: #be1212;
    clip-path: polygon(100% 100%, 0 70%, 70% 0);
    z-index: -1;
}

.insp-text {
  flex: 1;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.insp-text h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    border-left: 3px solid #e60012;
    padding-left: 10px;
}

.insp-text p {
  font-size: 18px;
  color: #424242;
  line-height: 1.6;
}

.insp-img {
  flex-shrink: 0;
  max-width: 400px;
}
.insp-img img{
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* ================= STATS SECTION ================= */
.stats {
    padding: 80px 0;
    background: #fffaf5;
    text-align: center;
}

.stats-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}
.stats-title2{
  font-size: 20px;
}

.heart-line {
    width: 100px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 L30,10 L40,0 L50,20 L60,10 L100,10" fill="none" stroke="%23d31212" stroke-width="2"/></svg>') no-repeat center;
}

.stats h2 {
    font-size: 42px;
    font-weight: 900;
    color: #d31212;
}
.stats h2 span {
    color: #2d3436;
}

.stats > p {
    font-size: 18px;
    color: #333;
    margin-bottom: 50px;
}
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 140px;
    margin-bottom: 70px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    flex: 1;
    position: relative;
    padding-top: 60px; /* 為上方溢出的圖片留空間 */
}

.stat-card {
    background: #FFFFFF;
    border-radius: 30px; /* 增加圓角 */
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    padding: 40px 25px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.stat-img-wrap {
    position: absolute;
    top: -140px; /* 調整溢出高度 */
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.stat-content {
  width: 100%;
}

.stat-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 105px;
    margin-bottom: 15px;
    width: 100%;
    position: relative;
}

.stat-icon-circle {
    width: 54px;
    height: 54px;
    background: #d31212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(211, 18, 18, 0.3);
    flex-shrink: 0;
}

.stat-header h3 {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.stat-hr {
    width: 100%;
    height: 1px;
    background: #eee;
    margin-bottom: 20px;
}

.stat-number {
    color: #d31212;
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 5px;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
}

.stat-number small {
    font-size: 24px;
    font-weight: 700;
    margin-left: 5px;
}

.stat-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d31212;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.stat-btn:hover {
    background: #b00e0e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 18, 18, 0.3);
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 130px;
    }
    .stat-item {
        width: 100%;
        max-width: 380px;
    }
}

.stat-badge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    background: #d31212;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.stat-badge iconify-icon { font-size: 24px; }
.stat-badge span { display: block; font-size: 12px;}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: #d31212;
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.stat-number small { font-size: 20px; margin-left: 5px; }

.stat-desc {
    font-size: 18px;
    color: #555;
    margin-top: 15px;
}

.stat-banner {
  display: inline-block;
  border: 1px solid #d31212;
  color: #252525;
  padding: 15px 40px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
}

/* ================= CLIENTS ================= */
.clients {
    padding: 80px 0;
    background: #fdfdfd;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    border-radius: 10px;
}

.client-logos img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ================= KNOWLEDGE ================= */
.knowledge {
    padding: 80px 0;
    background: #fffaf5;
}

.knowledge-box {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.knowledge-box h2 {
    font-size: 42px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}
.knowledge-box h2 iconify-icon { color: #d31212; font-size: 36px;}

.knowledge-box > p {
  font-size: 17px;
  color: #4B4B4B;
  margin-bottom: 40px;
  line-height: 1.6;
}

.know-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.know-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.know-icon {
    width: 100px;
    height: 100px;
    background: #be1212;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-bottom: 15px;
}

.know-item h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #be1212;
}
.know-item p {
    font-size: 16px;
    color: #777;
}

.btn-red {
    background: #be1212;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 700;
}
.btn-red:hover { background: #900a0a; }

/* ================= FOOTER ================= */


/* ================= RWD ================= */

@media (max-width: 1600px) {
  .insp-grid {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  }
  .insp-card {
    flex-direction: column;
  }
}

@media (max-width: 1200px) {
  .adv-grid, .product-grid, .know-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 768px) {
  header .container { flex-direction: column; height: auto; padding: 15px; gap: 15px;}
  nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
  .hero { height: 500px; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 18px; }
  .hero h2 { font-size: 28px; }

  .blog-grid { grid-template-columns: 1fr; }
  .adv-card {
      padding: 10px;
  }  
  .adv-card h3 {
    font-size: 18px;
  }
  .adv-card br {
  display: none;
  }
  
  .adv-card.tag-top::before {
      top: 8px;
      left: 8px;
  }
  .insp-grid { grid-template-columns: 1fr; }

  .news-item {
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }
  .news-date, .news-tag {
      font-size: 13px;
  }
  .news-title {
      width: 100%;
      margin-top: 5px;
      font-size: 15px;
      line-height: 1.4;
  }
  .news-img {
  width: auto;
  height: auto;
  border-radius: 10px;
  }
  .news-tag {
  display: none;
  }
  .news-item iconify-icon {
  position: absolute;
  right: 0;
  top: 25px;
  display: none;
  }
  .sec-title-wrap::before, .sec-title-wrap::after { display: none; }

  .case-container { flex-direction: column; }
  .case-sidebar {
  width: 100%;
  flex-direction: row;
  padding: 10px;
  gap: 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
  .case-sidebar h3, .case-sidebar span { writing-mode: horizontal-tb; letter-spacing: normal;}
  .case-slider-wrap { width: 100%; padding-bottom: 80px; }
  .case-slider-wrap .swiper-button-prev { left: 50% !important; transform: translateX(-50%) translateX(-40px) !important; bottom: 15px !important; }
  .case-slider-wrap .swiper-button-next { left: 50% !important; transform: translateX(-50%) translateX(40px) !important; bottom: 15px !important; }
  .case-slider-wrap .swiper-pagination { left: 50% !important; transform: translateX(-50%) !important; width: auto !important; bottom: 30px !important; }
  .insp-grid { padding-left: 20px; } /* 為絕對定位的數字騰出空間 */
  .insp-num { left: -15px; width: 40px; height: 40px; font-size: 20px; top: -15px;}
  .insp-img {
    width: 100%;
  }
  .insp-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .insp-text p {
    font-size: 16px;
  }
  .insp-card {
    padding: 20px;
  }
  .knowledge-box h2 {
    font-size: 28px;
  }
  .knowledge-box > p {
    font-size: 16px;
  }
  .knowledge-box br{
    display: none;
  }
  .know-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
  .product-grid {
    gap: 15px;
  }
  .sec-title-wrap h2 {
    font-size: 32px;
  }
  .advantages {
    padding: 40px 0;
  }
  .sec-title-wrap .sub-title {
    font-size: 13px;
  }
  .news-header h2 {
    font-size: 32px;
  }
  .btn-view-more {
    margin-top: 40px;
  }  
  .news-list {
    margin-bottom: 0px;
  }
  .case-header h2 {
    font-size: 22px;
  }
  .case-sidebar h3 {
    margin-bottom: 0px;
  }
  .stats h2 {
    font-size: 32px;
    line-height: 40px
  }
  .case-info {
    position: relative;
    background-color: #191919;
  }
  
  
}