:root {
  --accent: #3240b3;
  --danger: #d03b3b;
  --soft: #f4f5ff;
  --black: #080808;
  --ink: #000;
  --muted: #767676;
  --line: #767676;
  --line-dark: #000;
  --white: #fff;
  --font-heading: "Rubik", "Roboto", Arial, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;
  --container: 870px;
  --radius-lg: 20px;
  --radius-md: 15px;
  --radius-sm: 10px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.1;
}

body.menu-open {
  overflow: hidden;
}

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

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  min-width: 320px;
  overflow: clip;
}

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

.section {
  position: relative;
}

.site-header {
  position: fixed;
  width: 100vw;
  z-index: 30;
  height: 65px;
}

.site-header.scrolled {
    background: #ffffffcb;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  height: 65px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}
.logo img{
  height: 50px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 47px;
  font-size: 16px;
  white-space: nowrap;
}

.site-nav a,
.footer a,
.pill,
.btn-outline,
.account-btn,
.material-chip {
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.account-btn {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 5px 5px 20px;
  border-radius: 30px;
  color: var(--white);
  background: var(--black);
  font-size: 16px;
  white-space: nowrap;
  font-family: "rubik";
}

.account-btn:hover,
.account-btn:focus-visible,
.pill--dark:hover,
.pill--dark:focus-visible {
  background: var(--accent);
}

.account-btn__icon,
.pill span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  line-height: 1;
  /* font-size: 20px; */
}

.block-button{
  width: 180px !important;
  font-size: 24px;
  font-weight: 500;
  font-family: "Rubik";
}

.burger-btn,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 715px;
}

.hero__inner {
  position: relative;
  min-height: 715px;
}

.hero__blob {
  position: absolute;
  top: -55px;
  left: 50%;
  width: 958px;
  height: 871px;
  transform: translateX(-50%) rotate(-60deg);
  filter: blur(50px);
  opacity: 0.6;
  pointer-events: none;
}

.hero__blob img {
  width: 100%;
}

.hero .heading {
  position: absolute;
  top: 206px;
  left: 50%;
  width: max-content;
  margin: 0;
  transform: translateX(-50%) rotate(-5deg);
}
.hero .heading h1{
  width: max-content;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(62px, 5.65vw, 96px);
  line-height: 0.9;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}
.hero .heading h1:first-child {
  text-align: left;
}
.hero .heading h1:last-child {
  text-align: right;
  padding-top: 2vh;
  padding-left: 10vw;
}

.hero__note {
  position: absolute;
  max-width: 160px;
  margin: 0;
  font-size: 14px;
}

.hero__note--left {
  top: 440px;
  left: 8px;
}

.hero__note--right {
  top: 94px;
  right: 0;
}

.decor {
  position: absolute;
  pointer-events: none;
}

.decor--spring {
  top: 100px;
  right: -220px;
  width: 117px;
}

.decor--chrome {
  top: 380px;
  left: -200px;
  width: 120px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-heading--right {
  justify-content: stretch;
}

.section-heading h2 {
  flex: 0 0 auto;
  margin: 0;
  padding: 6px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
}

.arrow-line {
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(0, 0, 0, 0.2);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
}

.services-section {
  margin-top: 0;
}

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

.service-card {
  position: relative;
  min-height: 372px;
  padding: 19px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  isolation: isolate;
}

.service-card__visual {
  position: absolute;
  left: 20.5px;
  top: 19.85px;
  z-index: 0;
  width: calc(100% - 41px);
  height: calc(100% - 39px);
  background: #081026;
  -webkit-mask: url("https://www.figma.com/api/mcp/asset/d7a945b1-1a12-4588-8114-8b113f41bb90") center / 100% 100% no-repeat;
  mask: url("https://www.figma.com/api/mcp/asset/d7a945b1-1a12-4588-8114-8b113f41bb90") center / 100% 100% no-repeat;
}

.service-card__bg {
  position: absolute;
  left: -91.7%;
  top: -3.4%;
  width: 276%;
  height: 111%;
  max-width: none;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.96);
}

.service-card:nth-child(1) .service-card__bg {
  object-position: 50% 50%;
}

.service-card:nth-child(2) .service-card__bg {
  left: -91.6%;
  top: -5.2%;
  width: 201%;
  height: 114%;
  object-position: 50% 50%;
}

.service-card:nth-child(3) .service-card__bg {
  left: 1.4%;
  top: -11.6%;
  width: 142%;
  height: 124%;
  object-position: 50% 50%;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 20.5px;
  top: 19.85px;
  z-index: 1;
  width: calc(100% - 41px);
  height: calc(100% - 39px);
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.18) 48%, rgba(0,0,0,0.5));
  -webkit-mask: url("https://www.figma.com/api/mcp/asset/d7a945b1-1a12-4588-8114-8b113f41bb90") center / 100% 100% no-repeat;
  mask: url("https://www.figma.com/api/mcp/asset/d7a945b1-1a12-4588-8114-8b113f41bb90") center / 100% 100% no-repeat;
  pointer-events: none;
}

.service-card__icon {
  position: relative;
  z-index: 2;
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-size: 18px;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: -35px 0 0 66px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card p {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 68px;
  min-height: 95px;
  display: grid;
  /* place-items: center; */
  margin: 0;
  padding: 10px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 31px;
  width: 141px;
  padding: 5px 20px;
  border-radius: 20px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  font-family: "rubik";
}

.pill--dark {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 19px;
  padding-right: 5px;
  color: var(--white);
  background: var(--black);
}

.pill--accent {
  color: var(--white);
  background: var(--accent);
}

.pill--accent:hover,
.pill--accent:focus-visible {
  background: var(--black);
}

.info-section {
  padding-top: 22px;
}

.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.info-card--wide {
  padding: 15px;
  font-size: 18px;
}

.info-card--wide p {
  margin: 0;
}

.info-card--notice {
  display: flex;
  gap: 10px;
  min-height: 130px;
  padding: 20px;
  font-size: 16px;
  line-height: 1.2;
}

.info-card--notice p {
  margin: 0;
}

.notice-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  font-size: 12px;
}

.printers-section {
  padding-top: 45px;
}

.printer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: end;
  margin-top: 12px;
}

.printer-note,
.printer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.printer-note {
  position: relative;
  min-height: 124px;
  padding: 24px 20px;
  color: var(--white);
  background: #101e45;
  font-size: 14px;
  overflow: hidden;
}

.printer-note::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("https://www.figma.com/api/mcp/asset/0f5c3ab1-efce-450d-acb6-3599c17f74a8");
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.15;
  pointer-events: none;
}

.printer-note-content {
  position: relative;
  z-index: 1;
}

.printer-card {
  position: relative;
  min-height: 124px;
  display: grid;
  place-items: end center;
  padding: 74px 10px 18px;
  text-align: center;
  overflow: visible;
}

.printer-card img {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 150px;
  height: 150px;
  max-height: none;
  transform: translateX(-50%);
  object-fit: contain;
}

.printer-card:nth-child(3) img {
  top: -110px;
  width: 172px;
  height: 172px;
}

.printer-card h3 {
  margin: 7px 0 0;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.1;
}

.printer-switch {
  display: none;
}

.spec-table {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.spec-row {
  display: grid;
  grid-template-columns: 275px 1fr 1fr;
  gap: 40px;
  padding: 8px 0;
  border-bottom: 1px solid #d9d9d9;
  font-size: 16px;
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row strong {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 500;
}

.materials-section {
  padding-top: 32px;
}

.materials-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 14px 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 58%, rgba(50, 64, 179, 0.07) 100%);
}

.materials-intro h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.1;
}

.materials-intro p {
  max-width: 520px;
  margin: 0;
  color: #3c3c3c;
  font-size: 13px;
  line-height: 1.35;
}

.select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  font-size: 12px;
}

.select-wrap select {
  min-width: 96px;
  height: 32px;
  padding: 0 9px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--white);
  font-size: 12px;
}

.materials-preview {
  display: flex;
  gap: 8px;
  align-items: center;
}

.materials-preview span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 12px;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.55);
}

.material-colors {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.material-chip {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--black);
  border-radius: 12px;
  background: var(--white);
  font-size: 13px;
}

.material-chip span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  background: var(--chip);
}

.material-chip:hover,
.material-chip:focus-visible,
.material-chip.is-active {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(50, 64, 179, 0.1);
}

.materials-hint {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(50, 64, 179, 0.28);
  border-radius: 12px;
  color: var(--accent);
  background: rgba(50, 64, 179, 0.08);
  font-size: 12px;
  line-height: 1.35;
}

.models-section,
.about-section,
.gallery-section {
  padding-top: 46px;
}

.models-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 13px;
}

.model-card {
  min-height: 222px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.model-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.model-card h3 {
  /* min-height: 62px; */
  margin: 0;
  /* font-size: 13px; */
  line-height: 1.15;
  /* font-weight: 400; */
  overflow: hidden;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 18px;
  font-weight: 600;
  font-family: "Rubik";
}

.model-card p {
  margin: auto 0 0;
  font-size: 16px;
  font-weight: 300;
}

.btn-outline {
  min-height: 27px;
  display: grid;
  place-items: center;
  padding: 5px 18px;
  border: 1px solid var(--accent);
  border-radius: 20px;
  color: var(--accent);
  background: var(--white);
  font-size: 16px;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--white);
  background: var(--accent);
}

.about-copy {
  max-width: 815px;
  font-size: 16px;
  padding-left: 12px;
}

.about-copy p {
  margin: 0 0 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.gallery-card > img {
  width: 100%;
  height: 163px;
  object-fit: cover;
  border-bottom: 1px solid var(--black);
}

.gallery-card__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 15px 20px 20px;
  font-size: 10px;
}

.gallery-card__meta {
  margin: 0;
  color: var(--muted);
}

.gallery-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
}

.gallery-card p {
  margin: 0;
  font-size: 14px;
}

.gallery-card blockquote {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
  background: rgba(50, 64, 179, 0.1);
  font-size: 14px;
}

.gallery-card blockquote strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 16px;
}

.footer {
  margin-top: 44px;
  padding: 42px 0 22px;
  color: var(--white);
  background: var(--black);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer__logo {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.footer h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 14px;
}

.footer p,
.footer a,
.footer__bottom {
  display: block;
  margin: 0 0 8px;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--white);
}

.footer__bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding: 18px max(24px, calc((100vw - var(--container)) / 2)) 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  text-align: center;
}

.footer__bottom a,
.footer__bottom span {
  flex: 1 1 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 1370px) {
  :root {
    --container: 820px;
  }

  .hero {
    min-height: 650px;
  }

  .hero__inner {
    min-height: 650px;
  }

  .hero h1 {
    top: 150px;
  }
  .pill--dark{
    z-index: 2;
    right: 17px;
  }

  .models-grid{
    grid-template-columns: repeat(
        auto-fit,
        minmax(min(100%, 280px), 1fr)
    );
    gap: 12px;
    max-width: calc(5 * 280px + 3 * 24px);
    margin: 0 auto;
  }
}

.models-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: calc(3 * 280px + 2 * 12px);
  margin: 0 auto;
}

@media (max-width: 900px) {
  :root {
    --container: 760px;
  }

  .site-header__inner {
    gap: 24px;
  }

  .site-nav {
    gap: 24px;
  }

  .services-grid,
  .printer-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .printer-grid {
    margin-top: 42px;
    gap: 58px;
  }

  .service-card {
    min-height: 330px;
  }

  .spec-row {
    grid-template-columns: 220px 1fr 1fr;
    gap: 24px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .account-btn {
    display: none;
  }

  .burger-btn {
    position: relative;
    z-index: 41;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
  }

  .burger-btn span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--black);
    transition: transform var(--transition), top var(--transition), opacity var(--transition), background-color var(--transition);
  }

  .burger-btn span:nth-child(1) { top: 14px; }
  .burger-btn span:nth-child(2) { top: 20px; }
  .burger-btn span:nth-child(3) { top: 26px; }

  .burger-btn.is-open {
    background: var(--black);
  }

  .burger-btn.is-open span {
    background: var(--white);
  }

  .burger-btn.is-open span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }

  .burger-btn.is-open span:nth-child(2) {
    opacity: 0;
  }

  .burger-btn.is-open span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    font-family: var(--font-heading);
    font-size: 28px;
    transform: translateY(-10px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .hero {
    min-height: 0;
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .hero__inner {
    min-height: 560px;
    display: grid;
    align-content: center;
    gap: 18px;
    padding-top: 22px;
  }

  .hero__blob {
    top: 4px;
    left: 50%;
    width: 620px;
    height: 520px;
    transform: translateX(-50%) rotate(-58deg);
    filter: blur(36px);
    opacity: 0.52;
  }

  .hero h1 {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    width: min-content;
    max-width: 100%;
    transform: rotate(-4deg);
    font-size: clamp(46px, 14vw, 74px);
    line-height: 0.92;
    text-align: left;
  }

  .decor--spring {
    top: 26px;
    left: auto;
    right: 10px;
    z-index: 1;
    width: 78px;
    opacity: 0.86;
  }

  .decor--chrome {
    top: 312px;
    right: 4px;
    width: 58px;
    opacity: 0.9;
  }

  .hero__note {
    position: relative;
    z-index: 2;
    max-width: none;
    width: min(100%, 310px);
    padding: 10px 12px;
    border: 1px solid rgba(0,0,0,0.16);
    border-radius: 14px;
    background: rgba(255,255,255,0.76);
    backdrop-filter: blur(8px);
    font-size: 12px;
    line-height: 1.28;
  }

  .hero__note--left,
  .hero__note--right {
    top: auto;
    left: auto;
    right: auto;
  }

  .hero__note--right {
    justify-self: end;
  }

  .section-heading,
  .models-heading {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
  }

  .section-heading--right {
    justify-content: flex-start;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .arrow-line {
    display: none;
  }

  .spec-table {
    padding: 14px;
  }

  .spec-row,
  .spec-row--tall {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 12px 0;
  }

  .models-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .spec-row strong {
    font-size: 18px;
  }

  .printer-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
  }

  .printer-switch__button {
    min-height: 36px;
    border: 0;
    border-radius: 14px;
    color: var(--black);
    background: transparent;
    font: inherit;
    font-size: 13px;
  }

  .printer-switch__button.is-active {
    color: var(--white);
    background: var(--accent);
  }

  .spec-table {
    border-radius: 18px;
  }

  .spec-row span {
    display: none;
    font-size: 15px;
    line-height: 1.28;
  }

  body[data-active-printer="k1c"] .spec-row span[data-printer-spec="k1c"],
  body[data-active-printer="k2c"] .spec-row span[data-printer-spec="k2c"] {
    display: block;
  }

  .materials-panel {
    grid-template-columns: 1fr;
  }

  .select-wrap {
    justify-self: stretch;
  }

  .materials-preview {
    order: 2;
  }

  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer__bottom {
    justify-items: center;
    padding-inline: 16px;
  }

  .footer__bottom a,
  .footer__bottom span {
    flex: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero,
  .hero__inner {
    min-height: 0;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero__note {
    font-size: 12px;
  }

  .services-grid,
  .models-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 430px;
    padding: 20px;
  }

  .service-card__visual,
  .service-card::after {
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }

  .service-card__icon {
    width: 42px;
    height: 42px;
  }

  .service-card h3 {
    margin: -36px 0 0 62px;
    max-width: calc(100% - 78px);
    font-size: 15px;
  }

  .service-card p {
    left: 34px;
    right: 34px;
    bottom: 76px;
    min-height: 118px;
    align-items: center;
    font-size: 12px;
    line-height: 1.25;
  }

  .pill--dark {
    right: 32px;
    bottom: 34px;
  }

  .model-card {
    min-height: 0;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 20px);
  }

  .hero h1 {
    font-size: 40px;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: 26px;
    white-space: normal;
  }

  .mobile-menu {
    font-size: 25px;
  }

  .service-card {
    min-height: 440px;
  }
}
