:root {
  --bg: #0c1a2b;
  --surface: #112236;
  --surface-hover: #162a42;
  --border: rgba(139, 163, 184, 0.14);
  --text: #e8f4fc;
  --text-muted: #8ba3b8;
  --accent-from: #a855f7;
  --accent-mid: #6366f1;
  --accent-to: #22d3ee;
  --radius: 12px;
  --max-width: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 26, 43, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--text);
}

.brand__name {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  justify-content: flex-end;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav a:hover,
.nav a.nav__active {
  color: var(--text);
}

/* Hero */

.hero {
  padding: 5rem 0 4rem;
}

.hero--page {
  padding: 4rem 0 3rem;
}

.hero__inner {
  max-width: 640px;
}

.hero__logo {
  margin-bottom: 1.25rem;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-from);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero__desc {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 1rem;
}

.hero__subdesc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.back-link {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--text);
}

.hero__title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__title-row .hero__title {
  margin-bottom: 0;
}

.hero__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
}

.hero__badge--beta {
  background: rgba(34, 211, 238, 0.12);
  color: var(--accent-to);
}

.hero__badge--coming-soon {
  background: rgba(168, 85, 247, 0.12);
  color: #c4b5fd;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn--disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-from), var(--accent-mid), var(--accent-to));
  color: #fff;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25);
}

.btn--outline {
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--text);
  background: transparent;
  flex-shrink: 0;
}

.btn--outline:hover {
  border-color: var(--accent-to);
  background: rgba(34, 211, 238, 0.06);
}

/* Solutions */

.solutions {
  padding: 3rem 0 5rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.solution-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}

.solution-card:hover {
  background: var(--surface-hover);
  border-color: rgba(168, 85, 247, 0.25);
}

.solution-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.solution-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(34, 211, 238, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-from);
}

.solution-card__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(148, 163, 184, 0.1);
  color: var(--text-muted);
}

.solution-card__badge--beta {
  background: rgba(34, 211, 238, 0.12);
  color: var(--accent-to);
}

.solution-card__badge--coming-soon {
  background: rgba(168, 85, 247, 0.12);
  color: #c4b5fd;
}

.solution-card__name {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.solution-card__tagline {
  font-size: 0.875rem;
  color: var(--accent-from);
  margin-bottom: 0.5rem;
}

.solution-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  margin-top: auto;
}

.solution-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.solution-card__link:hover svg {
  transform: translateX(3px);
}

.solution-card__link--disabled {
  color: var(--text-muted);
  pointer-events: none;
}

/* Other service */

.other-service {
  padding: 0 0 4rem;
}

.other-service__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(34, 211, 238, 0.06));
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius);
}

.other-service__content {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.other-service__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(34, 211, 238, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.other-service__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-to);
}

.other-service__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.other-service__tagline {
  font-size: 0.875rem;
  color: var(--accent-to);
  margin-bottom: 0.5rem;
}

.other-service__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 52ch;
}

/* Service pages */

[hidden] {
  display: none !important;
}

.page-loading .page-section {
  display: none !important;
}

.service-page #page-main {
  min-height: 50vh;
}

.service-hero {
  position: relative;
  padding: 3rem 0 4.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.service-hero__glow {
  position: absolute;
  inset: -40% auto auto 50%;
  transform: translateX(-50%);
  width: min(900px, 120vw);
  height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(168, 85, 247, 0.18) 0%,
    rgba(99, 102, 241, 0.1) 35%,
    rgba(34, 211, 238, 0.05) 55%,
    transparent 72%
  );
  pointer-events: none;
}

.service-hero__content {
  position: relative;
  z-index: 1;
}

.service-hero__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.service-hero__text {
  max-width: 640px;
}

.service-hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-to);
  margin-bottom: 0.875rem;
}

.service-hero__title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.service-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.service-hero__badge {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.service-hero__badge--beta {
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent-to);
  border-color: rgba(34, 211, 238, 0.25);
}

.service-hero__badge--coming-soon {
  background: rgba(168, 85, 247, 0.1);
  color: #c4b5fd;
  border-color: rgba(168, 85, 247, 0.25);
}

.service-hero__tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-hero__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 54ch;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.service-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero__icon {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(168, 85, 247, 0.15),
    rgba(99, 102, 241, 0.12) 50%,
    rgba(34, 211, 238, 0.1)
  );
  border: 1px solid rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 60px rgba(168, 85, 247, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.25);
}

.service-hero__icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--accent-to);
}

.service-section {
  padding: 4.5rem 0;
  display: block;
}

.service-section--alt {
  background: rgba(17, 34, 54, 0.45);
  border-block: 1px solid var(--border);
}

.service-section__header {
  margin-bottom: 2rem;
}

.service-section__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-card {
  position: relative;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

.feature-card__index {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-to);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.feature-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.feature-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.highlight-card__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.5em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
}

.highlight-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(var(--process-cols, 4), minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: none;
  padding: 0;
  margin: 0;
}

.process-card {
  position: relative;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-height: 100%;
}

.process-card__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-cta {
  padding: 4rem 0 5rem;
  display: block;
}

.service-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.12),
    rgba(99, 102, 241, 0.08) 50%,
    rgba(34, 211, 238, 0.08)
  );
  border: 1px solid rgba(168, 85, 247, 0.22);
}

.service-cta__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.service-cta__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 42ch;
}

.service-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  flex-shrink: 0;
}

.service-page {
  background: var(--bg);
}

.page-section.is-visible {
  display: block;
}

.contact {
  padding: 3rem 0 5rem;
  border-top: 1px solid var(--border);
}

.contact__inner {
  max-width: 480px;
}

.contact__text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.contact__email {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-from);
  text-decoration: none;
}

.contact__email:hover {
  text-decoration: underline;
}

/* Footer */

.footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__brand {
  font-weight: 600;
  color: var(--text);
}

/* Responsive */

@media (max-width: 900px) {
  .service-hero__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-hero__visual {
    order: -1;
    justify-content: flex-start;
  }

  .service-hero__icon {
    width: 96px;
    height: 96px;
    border-radius: 20px;
  }

  .service-hero__icon svg {
    width: 40px;
    height: 40px;
  }

  .features__grid,
  .highlights__grid {
    grid-template-columns: 1fr;
  }

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

  .service-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .other-service__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding: 2rem 0 3rem;
  }

  .service-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0 2.5rem;
  }

  .header__inner {
    height: auto;
    min-height: 64px;
    padding: 0.75rem 0;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
  }
}

/* Impression 3D page */

.print3d-page {
  background: var(--bg);
}

.print3d-hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.print3d-hero__glow {
  position: absolute;
  inset: -30% auto auto 60%;
  transform: translateX(-50%);
  width: min(800px, 100vw);
  height: 480px;
  background: radial-gradient(
    ellipse at center,
    rgba(34, 211, 238, 0.14) 0%,
    rgba(168, 85, 247, 0.1) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.print3d-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.print3d-hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-to);
  margin-bottom: 0.875rem;
}

.print3d-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.print3d-hero__tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.print3d-hero__intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.print3d-hero__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 52ch;
}

.print3d-hero__visual {
  position: relative;
}

.print3d-hero__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow:
    0 0 80px rgba(34, 211, 238, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.35);
}

.print3d-section__header {
  margin-bottom: 2rem;
}

.print3d-section__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.print3d-section__subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.6;
}

.print3d-gallery {
  padding: 4.5rem 0;
}

.print3d-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.print3d-gallery__item {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.print3d-gallery__item--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.print3d-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.print3d-gallery__item:hover img {
  transform: scale(1.04);
}

.print3d-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(12, 26, 43, 0.92));
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
}

.print3d-services {
  padding: 4.5rem 0;
  background: rgba(17, 34, 54, 0.45);
  border-block: 1px solid var(--border);
}

.print3d-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.print3d-service-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.print3d-service-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.print3d-service-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.print3d-materials {
  padding: 4.5rem 0;
}

.print3d-materials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.print3d-material-card {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(34, 211, 238, 0.06)
  );
  border: 1px solid rgba(168, 85, 247, 0.18);
}

.print3d-material-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-to);
}

.print3d-material-card__use {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.print3d-process {
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
}

.print3d-process__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.print3d-process-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.print3d-process-card__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.print3d-process-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.print3d-cta {
  padding: 4rem 0 5rem;
}

.print3d-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.12),
    rgba(34, 211, 238, 0.08)
  );
  border: 1px solid rgba(168, 85, 247, 0.22);
}

.print3d-cta__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.print3d-cta__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 42ch;
}

@media (max-width: 1024px) {
  .print3d-hero__layout {
    grid-template-columns: 1fr;
  }

  .print3d-hero__visual {
    order: -1;
  }

  .print3d-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .print3d-gallery__item--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .print3d-services__grid,
  .print3d-materials__grid,
  .print3d-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .print3d-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .print3d-gallery__item--featured {
    grid-column: span 1;
  }

  .print3d-services__grid,
  .print3d-materials__grid,
  .print3d-process__grid {
    grid-template-columns: 1fr;
  }

  .print3d-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }
}
