:root {
  --ink: #0b0d0f;
  --ink-soft: #242a31;
  --paper: #f4f7fa;
  --paper-strong: #ffffff;
  --muted: #65717d;
  --line: #d9e1e8;
  --steel: #3d4854;
  --accent: #d92d27;
  --signal: #00a7c8;
  --green: #1f8a63;
  --shadow: 0 18px 48px rgba(12, 16, 20, .14);
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(11, 13, 15, .82);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 34px;
  object-fit: contain;
  padding: 3px;
  border-radius: 6px;
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .76);
  font-size: .92rem;
  transition: color .18s ease, background .18s ease;
}

.nav-link:hover,
.nav-link.active,
.has-dropdown:hover > .nav-link {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 10px;
  min-width: 560px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(11, 13, 15, .96);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.has-dropdown:hover .mega-menu,
.has-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.submenu-group {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.submenu-title {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 800;
}

.submenu-list {
  display: grid;
  gap: 4px;
}

.submenu-list a {
  display: block;
  padding: 8px 9px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
}

.submenu-list a:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.language-link {
  display: inline-grid;
  min-width: 36px;
  min-height: 34px;
  place-items: center;
  border-radius: 6px;
  color: rgba(255, 255, 255, .66);
  font-size: .78rem;
  font-weight: 800;
}

.language-link:hover,
.language-link.active {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 13, 15, .92), rgba(11, 13, 15, .62) 48%, rgba(11, 13, 15, .22)),
    var(--hero-image) center / cover;
}

.home-hero::before,
.page-hero::before,
.intro-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .86), transparent 82%);
  pointer-events: none;
}

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, var(--paper), transparent);
  pointer-events: none;
}

.home-hero-content,
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding-top: 200px;
}

.home-hero-content {
  max-width: 790px;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--signal);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}

h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: 7rem;
  line-height: .94;
  letter-spacing: 0;
}

.hero-subtitle,
.page-hero p,
.product-hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, .84);
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .10);
  color: #fff;
}

.button.secondary-dark {
  border-color: rgba(11, 13, 15, .16);
  background: #fff;
  color: var(--ink);
}

.hero-index {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 64px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  width: min(520px, calc(100vw - 40px));
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px);
}

.hero-index span {
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(11, 13, 15, .50);
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
  text-align: center;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  animation: intro-exit .56s ease 4.1s forwards;
}

.intro-overlay.skipped {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
}

.intro-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 15, .92), rgba(11, 13, 15, .70)),
    var(--intro-image) center / cover;
  transform: scale(1.04);
  animation: intro-drift 4.8s ease forwards;
}

.intro-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(920px, calc(100vw - 32px));
  padding: 30px;
  text-align: center;
}

.intro-content img {
  width: 88px;
  height: 70px;
  object-fit: contain;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  animation: intro-rise .62s ease both;
}

.intro-kicker {
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: intro-rise .62s ease .12s both;
}

.intro-content strong {
  font-size: 6.5rem;
  line-height: .94;
  letter-spacing: 0;
  animation: intro-rise .76s ease .36s both;
}

.intro-content p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.45rem;
  animation: intro-rise .76s ease .92s both;
}

@keyframes intro-rise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-drift {
  100% {
    transform: scale(1);
  }
}

@keyframes intro-exit {
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  display: grid;
  gap: 16px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading.compact h2 {
  max-width: 720px;
  font-size: 2.75rem;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.value-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.value-copy {
  padding-top: 30px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.value-copy strong {
  display: block;
  margin-top: 26px;
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1.16;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.scenario-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: #dce3ea;
  box-shadow: 0 12px 36px rgba(13, 17, 22, .14);
}

.scenario-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
}

.scenario-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(to top, rgba(0, 0, 0, .76), transparent);
}

.scenario-card h3 {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.18;
}

.category-grid,
.product-grid,
.support-grid,
.case-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-grid,
.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.product-card,
.support-grid article,
.case-card,
.principles article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 12px 36px rgba(13, 17, 22, .12);
}

.category-card img,
.product-card img,
.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dce3ea;
}

.category-card div,
.product-card div,
.case-card div {
  padding: 22px;
}

.category-card span,
.product-card span,
.support-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 800;
}

.category-card h3,
.product-card h3,
.case-card h3,
.support-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.18;
}

.category-card p,
.product-card p,
.case-card p,
.support-grid p,
.about-copy p,
.product-body p,
.product-aside p {
  color: var(--muted);
}

.product-card p {
  display: -webkit-box;
  min-height: 5.8em;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.support-grid article,
.principles article {
  padding: 28px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: var(--container);
  margin: 0 auto 96px;
  padding: 46px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 3.4rem;
  line-height: 1;
}

.page-hero {
  min-height: 68vh;
}

.page-hero-inner {
  padding-bottom: 120px;
}

.page-hero h1 {
  font-size: 6rem;
}

.about-grid,
.contact-layout,
.product-content {
  display: grid;
  gap: 70px;
  align-items: start;
}

.about-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: center;
}

.about-copy h2 {
  font-size: 3.35rem;
  line-height: 1.02;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.principles span {
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-weight: 800;
}

.principles p {
  color: var(--ink-soft);
  font-size: 1.25rem;
  line-height: 1.28;
}

.contact-layout {
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1.26fr);
}

.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(13, 17, 22, .12);
}

.contact-panel {
  display: grid;
  gap: 8px;
  padding: 30px;
}

.contact-panel .eyebrow {
  margin-top: 18px;
}

.contact-panel .eyebrow:first-child {
  margin-top: 0;
}

.contact-panel a,
.contact-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  font-style: normal;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd7e1;
  border-radius: 6px;
  background: #f8fafc;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--signal);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(0, 167, 200, .24);
  border-radius: 6px;
  background: rgba(0, 167, 200, .10);
  color: #0c6574;
  font-weight: 800;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 54px;
  width: var(--container);
  min-height: 86vh;
  margin: 0 auto;
  padding: 166px 0 80px;
  align-items: center;
}

.product-hero-copy {
  color: var(--ink);
}

.product-hero-copy .eyebrow {
  color: var(--signal);
}

.product-hero-copy h1 {
  font-size: 4.4rem;
  line-height: 1;
}

.product-hero-copy p {
  color: var(--ink-soft);
}

.product-hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: #dce3ea;
  box-shadow: var(--shadow);
}

.product-hero-media img {
  width: 100%;
  min-height: 520px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-content {
  grid-template-columns: minmax(240px, .34fr) minmax(0, .66fr);
}

.product-aside {
  position: sticky;
  top: 112px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(13, 17, 22, .10);
}

.product-aside span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 800;
}

.product-aside h2 {
  font-size: 1.65rem;
  line-height: 1.12;
}

.product-body {
  min-width: 0;
}

.product-body h2 {
  margin: 42px 0 16px;
  font-size: 2rem;
  line-height: 1.12;
}

.product-body h2:first-child {
  margin-top: 0;
}

.product-body h3 {
  margin: 28px 0 10px;
  font-size: 1.32rem;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 13px 14px 13px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.spec-table {
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.spec-table table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table td {
  min-width: 160px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.product-media-block {
  margin-top: 44px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #dce3ea;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #111418;
}

.site-footer {
  background: #111418;
  color: rgba(255, 255, 255, .72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 46px 0;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand img {
  width: 62px;
  height: auto;
  object-fit: contain;
  padding: 5px;
  border-radius: 8px;
  background: #fff;
}

.footer-brand p {
  margin: 8px 0 0;
  color: #fff;
  font-weight: 800;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 5px;
  justify-items: end;
  font-style: normal;
}

.footer-contact a,
.footer-contact span {
  overflow-wrap: anywhere;
}

.copyright {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .48);
  font-size: .9rem;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 5.4rem;
  }

  .page-hero h1 {
    font-size: 4.8rem;
  }

  .product-grid,
  .scenario-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100vw - 24px);
    margin-top: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(11, 13, 15, .96);
  }

  .site-nav.open {
    display: grid;
  }

  .nav-link {
    width: 100%;
    padding: 13px;
  }

  .mega-menu {
    position: static;
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .language-switch {
    margin-left: 0;
    padding: 8px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .home-hero-content,
  .page-hero-inner {
    width: calc(100vw - 32px);
    margin: 0 auto;
    padding-top: 170px;
  }

  h1,
  .page-hero h1 {
    font-size: 4rem;
  }

  .intro-content strong {
    font-size: 4.2rem;
  }

  .hero-index {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100vw - 32px);
    margin: 54px auto 0;
    grid-template-columns: 1fr;
  }

  .hero-index span {
    min-height: 56px;
  }

  .value-section,
  .about-grid,
  .contact-layout,
  .product-content,
  .footer-inner,
  .principles {
    grid-template-columns: 1fr;
  }

  .product-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 150px;
  }

  .product-aside {
    position: static;
  }

  .category-grid,
  .product-grid,
  .scenario-grid,
  .support-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .brand span {
    font-size: .95rem;
  }

  .home-hero,
  .page-hero {
    min-height: 92vh;
  }

  h1,
  .page-hero h1 {
    font-size: 3.3rem;
  }

  .product-hero-copy h1 {
    font-size: 3rem;
  }

  .hero-subtitle,
  .page-hero p,
  .product-hero-copy p,
  .intro-content p {
    font-size: 1.08rem;
  }

  .intro-content strong {
    font-size: 3.4rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .section-heading.compact h2,
  .about-copy h2,
  .cta-band h2 {
    font-size: 2.35rem;
  }

  .value-copy strong {
    font-size: 1.75rem;
  }

  .category-grid,
  .product-grid,
  .scenario-grid,
  .support-grid,
  .case-grid,
  .gallery-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .about-image img,
  .product-hero-media img {
    min-height: 320px;
  }

  .cta-band {
    display: grid;
    padding: 28px;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
