/* home.css - homepage-only layout (extracted from the former inline <style>) */
/* ======= Discount Section ======= */
.discount-section {
  
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.discount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.discount-poster-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.discount-poster-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.discount-poster-wrap:hover img {
  transform: scale(1.03);
}
.discount-poster-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(
    to top,
    rgba(10, 30, 61, 0.95) 0%,
    rgba(10, 30, 61, 0.7) 60%,
    transparent 100%
  );
  color: white;
}
.discount-poster-overlay h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin-bottom: 0.25rem;
}
.discount-poster-overlay p {
  font-size: var(--fs-small);
  opacity: 0.8;
}

/* Discount Section Header */
.discount-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.discount-section-desc {
  margin-top: 0.875rem;
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Discount Table Wrapper */
.discount-table-wrapper {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

/* New Discount Table */
.discount-table-new {
  width: 100%;
  border-collapse: collapse;
}
.discount-table-new th {
  padding: 0.875rem 1.5rem;
  text-align: left;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: rgba(17, 56, 212, 1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-section);
  border-bottom: 2px solid var(--border-light);
}
.discount-table-new th:last-child {
  text-align: left;
}
.discount-table-new tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease;
}
.discount-table-new tbody tr:last-child {
  border-bottom: none;
}
.discount-table-new tbody tr:hover {
  background: var(--bg-section);
}
.discount-table-new td {
  padding: 0.875rem 1.5rem;
  vertical-align: middle;
  font-size: var(--fs-small);
  color: var(--text-primary);
}
.discount-table-new .year-tag {
  display: inline-block;
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  color: var(--text-primary);
}
.discount-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  
}
.discount-low {
  border-color: #d1fae5;
  color: #065f46;
  background: #f0fdf4;
}
.discount-low-mid {

  color: #92400e;
  background: #fffbeb;
}
.discount-mid {

  color: #9a3412;
  background: #fff7ed;
}
.discount-mid-high {
  border-color: #fecaca;
  color: #991b1b;
  background: #fef2f2;
}
.discount-high-mid {
 
  color: #7f1d1d;
  background: #fef2f2;
}
.discount-high {
 
  color: #7f1d1d;
  background: #fef2f2;
}

/* Enterprise CTA */
.discount-enterprise {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.discount-enterprise-text {
  flex: 1;
}
.discount-enterprise-text h4 {
  font-size: var(--fs-large);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.discount-enterprise-text p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 992px) {
  .discount-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .discount-poster-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .discount-section {
    padding: 3rem 0;
  }
  .discount-table-new th,
  .discount-table-new td {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
  .discount-table-new th:nth-child(4),
  .discount-table-new td:nth-child(4) {
    display: none;
  }
  .discount-enterprise {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .discount-enterprise .btn {
    width: 100%;
  }
}

/* ======= Featured Series — Large Poster Layout ======= */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.featured-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
.featured-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
}
.featured-card-img img {
  width: 100%;
  height: 100%;
  position: center;
  padding: 5px 5px 5px 5px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.featured-card:hover .featured-card-img img {
  transform: scale(1.06);
}
.featured-card-body {
  padding: 0 1.5rem 1.5rem 1.75rem;
  margin-top: -20px;
/* --- 核心修改部分 --- */
  position: relative;   /* 必须加这个，z-index 才会生效 */
  z-index: 10;          /* 只要比图片层级高即可 */
}
.featured-card-body h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  
}
.featured-card-body p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.featured-card-body a {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--accent);
}
.featured-card-body a:hover {
  text-decoration: underline;
}

/* Full-width CTA banner card */
.featured-card-cta {
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
}
.featured-card-cta:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
.featured-card-cta .featured-card-body {
  padding: 2.5rem;
}
.featured-card-cta .featured-card-body h3 {
  color: white;
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}
.featured-card-cta .featured-card-body p {
  color: rgba(200, 220, 255, 0.85);
}
.featured-card-cta .featured-card-body a.btn {
  display: inline-block;
  background: white;
  color: var(--accent);
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  transition: var(--transition);
}
.featured-card-cta .featured-card-body a.btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
  text-decoration: none;
}

/* Orange CTA variant */
.featured-card-cta-orange {
  background: linear-gradient(135deg, #ff8a00 0%, #ff5e00 100%);
}
.featured-card-cta-orange .featured-card-body p {
  color: rgba(255, 244, 235, 0.9);
}
.featured-card-cta-orange .featured-card-body a.btn {
  color: #ff5e00;
}
.featured-card-cta-orange .featured-card-body a.btn:hover {
  color: #ff5e00;
}

@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-card-img { aspect-ratio: 1/1; }
  .featured-card-cta { min-height: 300px; }
}
@media (max-width: 768px) {
  .featured-grid { grid-template-columns:  repeat(2, 1fr); gap: 1.5rem; }
  .featured-card-img { aspect-ratio: 16/9; }
  .featured-card-cta { min-height: 250px; }
}

/* ======= Industry Editorial Rows ======= */
.industry-scene {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
}
.industry-scene:last-of-type {
  border-bottom: none;
}
.industry-scene:nth-child(odd) {
  background: var(--bg-white);
}
.industry-scene:nth-child(even) {
  background: var(--bg-section);
}

.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
}
.editorial-row.reverse {
  direction: rtl;
}
.editorial-row.reverse > * {
  direction: ltr;
}

.editorial-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.editorial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.editorial-img-wrap:hover img {
  transform: scale(1.04);
}

.editorial-text {
  padding: 1rem 0;
}
.editorial-tag {
  display: inline-block;
  font-size: var(--fs-tag);
  font-weight: var(--fw-semibold);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.editorial-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.editorial-text p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.editorial-text .btn {
  margin-right: 0.75rem;
}

@media (max-width: 768px) {
  .editorial-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr !important;
  }
  .editorial-row.reverse > * {
    direction: ltr;
  }
}

/* ======= Product Line Carousel - 全宽模式 ======= */
.promo-carousel {
  position: relative;
  width: 100vw;           /* 核心：宽度设为视口宽度 */
  left: 50%;              /* 配合下面的 transform 实现全宽居中 */
  right: 50%;
  margin-left: -50vw;     /* 技巧：强制脱离父级 container 的宽度限制 */
  margin-right: -50vw;
  margin-bottom: -40px;
  margin-top: -10px;
  max-width: none;        /* 移除 1100px 限制 */
  border-radius: 0;       /* 移除圆角，海报边缘更利落 */
  box-shadow: none;       /* 移除阴影 */
  overflow: hidden;
  aspect-ratio: 21/9;     /* 全宽模式建议用更扁平的比例，比如 21/9 或 16/6 */
  background: #ffffff;
}

.promo-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.promo-slide {
  width: 100%;
    
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a1e3d;
}
.promo-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(
    to top,
    rgba(5, 15, 35, 0.85) 0%,
    rgba(5, 15, 35, 0.4) 50%,
    transparent 80%
  );
  pointer-events: none;
}
/* Series label pill */
.promo-series-pill {
  display: none;
}
/* Bottom text content */
.promo-slide-content {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.promo-slide-text {
  flex: 1;
}
.promo-slide-title {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}
.promo-slide-desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-width: 560px;
}
/* Carousel Nav */
.promo-carousel-nav {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
  padding: 0;
}
.promo-dot.active {
  background: white;
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}
.promo-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}
/* Carousel Arrows */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(5, 15, 35, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.promo-arrow:hover {
  background: rgba(17, 56, 212, 0.7);
  transform: translateY(-50%) scale(1.08);
}
.promo-arrow.prev { left: 1rem; }
.promo-arrow.next { right: 1rem; }
.promo-arrow svg { width: 18px; height: 18px; }
/* Progress Bar */
.promo-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  background: rgba(17, 56, 212, 0.8);
  width: 0%;
  transition: none;
  z-index: 10;
}
/* Slide number indicator */
.promo-counter {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(5, 15, 35, 0.55);
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 10;
  letter-spacing: 0.05em;
}

@media (max-width: 960px) {
 
  .promo-slide{
    width: 100%;
  }
  .promo-slide-content {
    flex-direction: column;
    align-items: flex-start;
    bottom: 1.5rem;
    left: 1.25rem;
    right: 1.25rem;
    gap: 0.75rem;
  }
  .promo-slide-desc { display: none; }
  .promo-arrow { width: 36px; height: 36px; }
  .promo-arrow.prev { left: 0.5rem; }
  .promo-arrow.next { right: 0.5rem; }
}

/* ======= Series Grid ======= */
.series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.series-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: var(--transition);
}
.series-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.series-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.series-card:hover img {
  transform: scale(1.05);
}
.series-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 61, 0.88) 0%,
    rgba(10, 30, 61, 0.2) 60%,
    transparent 100%
  );
  transition: var(--transition);
}
.series-card:hover .series-card-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 30, 61, 0.92) 0%,
    rgba(10, 30, 61, 0.3) 70%,
    transparent 100%
  );
}
.series-card-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}
.series-card-label h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.375rem;
}
.series-card-label p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 768px) {
  .series-grid {
    grid-template-columns: 1fr;
  }
}

/* ======= Logistics Section ======= */
.logistics-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 3rem;
}
.logistics-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.carriers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.logistics-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.logistics-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.logistics-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-spring);
}
.logistics-card:hover .logistics-icon {
  transform: scale(1.15);
}
.logistics-card h3 {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.logistics-card p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
}
.icon-ups {
  background: linear-gradient(135deg, #ffb500 0%, #351c15 100%);
  color: white;
}
.icon-dhl {
  background: linear-gradient(135deg, #ffcc00 0%, #d40511 100%);
  color: white;
}
.icon-fedex {
  background: linear-gradient(135deg, #4d148c 0%, #ff6600 100%);
  color: white;
}

.warehouses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.warehouse-icon-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.warehouse-icon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.warehouse-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.warehouse-icon-card h4 {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
}
.warehouse-icon-card span {
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .carriers-grid {
    grid-template-columns: 1fr;
  }
  .warehouses-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .warehouses-grid {
    grid-template-columns: 1fr;
  }
}

/* ======= Facility Gallery ======= */
.facility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--border-light);
}
.facility-row:last-child {
  border-bottom: none;
}
.facility-row:nth-child(odd) {
  background: var(--bg-white);
}
.facility-row:nth-child(even) {
  background: var(--bg-section);
  direction: rtl;
}
.facility-row:nth-child(even) > * {
  direction: ltr;
}

.facility-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.facility-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.facility-img:hover img {
  transform: scale(1.04);
}
.facility-text h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.facility-text p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.facility-gallery-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.facility-gallery-mini img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: var(--transition);
}
.facility-gallery-mini img:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .facility-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr !important;
  }
  .facility-row:nth-child(even) > * {
    direction: ltr;
  }
}

/* ======= Delivery Cards ======= */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.delivery-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.delivery-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.delivery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}
.delivery-card:hover .delivery-card-img img {
  transform: scale(1.05);
}
.delivery-card-body {
  padding: 1.25rem;
}
.delivery-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-tag);
  font-weight: var(--fw-semibold);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
}
.delivery-card-body h4 {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.delivery-card-body p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }
}

/* ======= Service Cards ======= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}
.service-card:hover img {
  transform: scale(1.05);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 61, 0.85) 0%,
    rgba(10, 30, 61, 0.2) 60%,
    transparent 100%
  );
  transition: var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 30, 61, 0.92) 0%,
    rgba(10, 30, 61, 0.3) 70%,
    transparent 100%
  );
}
.service-card-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
