@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansHans';
  src: url('/assets/fonts/NotoSansHans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansHans';
  src: url('/assets/fonts/NotoSansHans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --text: #333333;
  --text-secondary: #7c7c7c;
  --text-body: rgba(0,0,0,.65);
  --brand: #47b7fb;
  --brand-hover: #70cdff;
  --brand-active: #3190d4;
  --footer-bg: #1a1a1a;
  --line: rgba(0,0,0,.08);
  --shadow: 0 4px 8px 0 rgba(0,78,125,.1);
  --shadow-lg: 0 8px 24px rgba(0,78,125,.12);
  --radius: 8px;
  --radius-sm: 4px;
  --container: 1208px;
  --nav-height: 70px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', 'NotoSansHans', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.5715;
}

a { color: var(--brand); text-decoration: none; transition: color .3s; }
a:hover { color: var(--brand-hover); }
a:active { color: var(--brand-active); }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; }

.skip {
  position: absolute; left: -999px; top: 12px;
  background: var(--brand); color: #fff; padding: 10px 14px; border-radius: var(--radius);
}
.skip:focus { left: 12px; z-index: 9999; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 4px;
}

/* Navigation */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  transition: box-shadow .3s;
}
.topbar.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand img {
  height: 32px; width: auto;
  filter: brightness(0);
}
.brand .tag {
  font-size: 12px; color: var(--text-secondary);
  padding: 4px 10px; border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
}
.navlinks {
  display: flex; align-items: center; gap: 4px;
}
.navlinks a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.navlinks a[aria-current="page"] {
  color: var(--brand);
  background: rgba(71,183,251,.08);
}
.navlinks a:hover {
  color: var(--brand);
  background: rgba(71,183,251,.06);
}

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

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
}
.btn:hover { border-color: var(--brand); color: var(--brand); }
.btn.primary {
  border: none;
  background: var(--brand);
  color: #fff;
}
.btn.primary:hover { background: var(--brand-hover); }
.btn.primary:active { background: var(--brand-active); }
.btn.small { padding: 8px 16px; font-size: 13px; }
.btn.link { border-color: transparent; background: transparent; color: var(--brand); }
.btn.link:hover { background: rgba(71,183,251,.08); }
.btn.contact-btn {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}
.btn.contact-btn:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

.menuBtn { display: none; }
.mobilePanel { display: none; }

/* Hero Banner */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}
.heroBg {
  position: absolute; inset: 0;
  z-index: 0;
}
.heroBg video,
.heroBg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.heroOverlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.5));
  z-index: 1;
}
.heroContent {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  color: #fff;
  padding-top: var(--nav-height);
}
.heroContent img.slogan {
  max-width: 600px;
  width: 80%;
  margin-bottom: 24px;
}
.heroContent p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: .9;
}
.heroActions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.heroActions .btn { padding: 14px 32px; font-size: 16px; }
.heroActions .btn.primary { background: var(--brand); }
.heroActions .btn.secondary {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
}
.heroActions .btn.secondary:hover {
  background: rgba(255,255,255,.3);
}

/* Section Common */
.section {
  padding: 80px 0;
}
.section.alt {
  background: var(--bg-light);
}
.sectionHead {
  text-align: center;
  margin-bottom: 48px;
}
.sectionHead h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -.02em;
}
.sectionHead p {
  margin: 0 auto;
  color: var(--text-secondary);
  max-width: 600px;
  font-size: 16px;
}
.sectionHead.left {
  text-align: left;
}
.sectionHead.left p {
  margin-left: 0;
}

/* Feature Grid */
.featuresBg {
  background: url('/assets/images/features.png') center/cover no-repeat;
  padding: 100px 0;
}
.featuresGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.featureCard {
  background: rgba(255,255,255,.95);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.featureCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.featureCard img {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
}
.featureCard h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.featureCard p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Projects/Solutions Grid */
.projectsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.projectCard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.projectCard img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .6s ease;
}
.projectCard:hover img {
  transform: scale(1.08);
}
.projectInfo {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: #fff;
}
.projectInfo h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
}
.projectInfo p {
  margin: 0;
  font-size: 14px;
  opacity: .9;
}

/* Products Grid */
.productsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.productCard {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.productCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.productCard .media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #000;
}
.productCard video,
.productCard img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.productCard .body {
  padding: 24px;
}
.productCard h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.productCard p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-secondary);
}
.productCard .more {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--brand);
  font-size: 14px;
}
.productCard .more:hover { color: var(--brand-hover); }

/* About/Intro Section */
.introSection {
  background: url('/assets/images/introduce-bg.png') center/cover no-repeat;
  padding: 100px 0;
}
.introContent {
  max-width: 700px;
}
.introContent h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 24px;
  color: var(--text);
}
.introContent p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
  color: var(--text-secondary);
}
.introContent .btn {
  margin-top: 8px;
  background: var(--brand);
  border: none;
  color: #fff;
}
.introContent .btn:hover {
  background: var(--brand-hover);
}

/* News Grid */
.newsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.newsMain {
  grid-row: span 2;
}
.newsCard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.newsCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.newsCard.horizontal {
  flex-direction: row;
}
.newsCard .media {
  flex-shrink: 0;
  overflow: hidden;
}
.newsMain .media {
  height: 300px;
}
.newsCard.horizontal .media {
  width: 200px;
  height: 150px;
}
.newsCard img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.newsCard:hover img {
  transform: scale(1.05);
}
.newsCard .body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsCard h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.newsMain h3 {
  font-size: 20px;
}

/* Contact Form Section */
.contactSection {
  background: var(--bg-light);
  padding: 80px 0;
}
.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.contactLeft h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.2;
}
.contactLeft p {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}
.contactForm {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.formGroup {
  margin-bottom: 16px;
}
.formGroup.full {
  grid-column: span 2;
}
.formGroup label {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}
.formGroup label .required {
  color: #ff4d4f;
}
.formGroup input,
.formGroup textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: border-color .2s;
}
.formGroup input:focus,
.formGroup textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.formGroup textarea {
  resize: vertical;
  min-height: 100px;
}
.contactForm .btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.65);
  padding: 60px 0 30px;
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footerLogo img {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footerLogo p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footCol h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 16px;
}
.footLinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footLinks a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
}
.footLinks a:hover { color: #fff; }
.footContact p {
  margin: 0 0 8px;
  font-size: 14px;
}
.footContact a { color: var(--brand); }
.footContact a:hover { color: var(--brand-hover); }
.socialLinks {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.socialLinks a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background .2s;
}
.socialLinks a:hover {
  background: var(--brand);
}
.socialLinks img {
  width: 18px; height: 18px;
}
.copyright {
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

/* Cards (legacy support) */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cardBody { padding: 24px; }
.cardTitle { margin: 0 0 8px; font-size: 18px; font-weight: 500; color: var(--text); }
.cardText { margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.chipRow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  font-size: 12px;
  color: var(--brand);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(71,183,251,.3);
  background: rgba(71,183,251,.08);
}

.miniArt {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
  border-bottom: 1px solid var(--line);
}
.miniArt img { width: auto; height: 80%; object-fit: contain; max-width: 90%; }

/* Panels */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}
.panel h3 { margin: 0 0 8px; font-size: 18px; font-weight: 500; color: var(--text); }
.panel p { margin: 0; color: var(--text-secondary); font-size: 14px; }
.list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-size: 14px;
  color: var(--text-body);
}
.check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.check::after {
  content: '';
  position: absolute;
  left: 7px; top: 4px;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Page Hero */
.pageHero {
  padding: calc(var(--nav-height) + 40px) 0 40px;
  background: var(--bg-light);
}
.crumbs {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}
.crumbs a { color: var(--brand); }
.pageTitle {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
}
.pageLead {
  color: var(--text-secondary);
  max-width: 70ch;
  margin: 0;
  font-size: 16px;
}

/* Product Detail Hero */
.productHero {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.productHero video,
.productHero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.productHero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.6), transparent);
  display: flex; align-items: center;
}
.productHero .content {
  color: #fff;
  max-width: 500px;
  padding: 0 48px;
}
.productHero h1 {
  font-size: 42px;
  font-weight: 500;
  margin: 0 0 16px;
}
.productHero p {
  font-size: 18px;
  margin: 0;
  opacity: .9;
}

/* Note */
.note {
  margin-top: 16px;
  border: 1px solid var(--line);
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Demo/CTA Section */
.ctaSection {
  background: linear-gradient(135deg, #47b7fb, #3190d4);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.ctaSection h2 {
  font-size: 32px;
  margin: 0 0 16px;
}
.ctaSection p {
  font-size: 16px;
  margin: 0 0 24px;
  opacity: .9;
}
.ctaSection .btn {
  background: #fff;
  color: var(--brand);
  border: none;
  padding: 14px 32px;
  font-size: 16px;
}
.ctaSection .btn:hover {
  background: rgba(255,255,255,.9);
}

/* Responsive */
@media (max-width: 960px) {
  :root {
    --nav-height: 60px;
  }
  .hero { min-height: 500px; max-height: 700px; }
  .heroContent img.slogan { max-width: 400px; }
  .featuresGrid { grid-template-columns: repeat(2, 1fr); }
  .projectsGrid { grid-template-columns: 1fr; }
  .projectCard img { height: 280px; }
  .productsGrid { grid-template-columns: 1fr; }
  .newsGrid { grid-template-columns: 1fr; }
  .newsMain { grid-row: auto; }
  .newsCard.horizontal { flex-direction: column; }
  .newsCard.horizontal .media { width: 100%; height: 200px; }
  .contactGrid { grid-template-columns: 1fr; }
  .footerGrid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .grid3 { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .navlinks { display: none; }
  .menuBtn { display: inline-flex; }
  .mobilePanel {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    padding: 16px;
  }
  .mobilePanel.open { display: block; }
  .mobileLinks { display: flex; flex-direction: column; gap: 8px; }
  .mobileLinks a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text);
    border: 1px solid var(--line);
  }
  .mobileLinks a:hover { background: var(--bg-light); color: var(--brand); }
  .productHero { height: 400px; }
  .productHero .content { padding: 0 24px; }
  .productHero h1 { font-size: 32px; }
}

@media (max-width: 600px) {
  .featuresGrid { grid-template-columns: 1fr; }
  .formRow { grid-template-columns: 1fr; }
  .formGroup.full { grid-column: auto; }
  .footerGrid { grid-template-columns: 1fr; }
  .heroActions { flex-direction: column; align-items: center; }
  .heroActions .btn { width: 100%; max-width: 280px; }
}

/* Case Filter Tabs */
.filterTabs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filterTab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
}
.filterTab:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.filterTab.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Case Cards Grid */
.caseGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.caseCard {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  display: block;
}
.caseCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.caseCard .media {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.caseCard img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.caseCard:hover img {
  transform: scale(1.05);
}
.caseCard .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.caseCard .badge.ecommerce { background: #ff6b6b; }
.caseCard .badge.retail { background: #4ecdc4; }
.caseCard .badge.electronics { background: #45b7d1; }
.caseCard .badge.manufacturing { background: #96ceb4; }
.caseCard .badge.mro { background: #dda0dd; }
.caseCard .badge.appliance { background: #ffd93d; color: #333; }
.caseCard .badge.pharma { background: #6c5ce7; }
.caseCard .body {
  padding: 20px;
}
.caseCard .location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.caseCard .location::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237c7c7c'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.caseCard h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.caseCard .desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .caseGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .caseGrid { grid-template-columns: 1fr; }
  .filterTabs { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .productCard, .newsCard, .featureCard { transition: none; }
  .projectCard img, .newsCard img { transition: none; }
}
