:root {
  --black: #050608;
  --graphite: #11161c;
  --graphite-soft: #1a222b;
  --steel: #7f8a96;
  --steel-light: #d6dce2;
  --white: #f7f9fb;
  --blue: #4aa3ff;
  --blue-soft: rgba(74, 163, 255, 0.18);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
[role="button"] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(74, 163, 255, 0.82);
  outline-offset: 3px;
}

::selection {
  background: rgba(74, 163, 255, 0.3);
  color: #ffffff;
}

h1,
h2,
h3,
p,
a,
button {
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(5, 6, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(5, 6, 8, 0.92);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(154px, 18vw, 250px);
  min-width: 154px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: rgba(247, 249, 251, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.language-switch {
  position: relative;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  margin-left: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.language-switch button {
  min-width: 38px;
  height: 32px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: rgba(247, 249, 251, 0.66);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switch button.is-active {
  background: var(--blue);
  color: #04101b;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
  min-height: 78vh;
  padding: 112px clamp(20px, 6vw, 82px) 52px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.88), rgba(5, 6, 8, 0.62) 52%, rgba(5, 6, 8, 0.38)),
    radial-gradient(circle at 75% 20%, rgba(74, 163, 255, 0.1), transparent 32%),
    url("assets/hero-industrial-hall.png") 70% center / cover no-repeat;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.steel-plate {
  display: none;
}

.machine-line {
  position: absolute;
  right: 4vw;
  height: 1px;
  width: 48vw;
  background: linear-gradient(90deg, transparent, rgba(74, 163, 255, 0.8), transparent);
}

.line-one {
  top: 34vh;
}

.line-two {
  top: 42vh;
}

.spark {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--blue);
  box-shadow: 0 0 28px var(--blue);
}

.spark-one {
  right: 24vw;
  top: 32vh;
}

.spark-two {
  right: 13vw;
  top: 50vh;
}

.spark-three {
  right: 37vw;
  top: 59vh;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1200px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 5.8vw, 6rem);
  line-height: 1.03;
  font-weight: 800;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 680px;
  color: rgba(247, 249, 251, 0.78);
  font-size: clamp(1.06rem, 2vw, 1.38rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--blue);
  color: #04101b;
  box-shadow: 0 18px 45px rgba(74, 163, 255, 0.24);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button-ghost.dark {
  border-color: rgba(17, 22, 28, 0.2);
  color: #11161c;
}

.hero-panel {
  align-self: end;
  padding: 28px;
  background: rgba(17, 22, 28, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  color: var(--steel-light);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 14px;
  font-size: 2rem;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(247, 249, 251, 0.72);
  line-height: 1.6;
}

.section {
  padding: 84px clamp(20px, 6vw, 82px);
}

.section-light {
  background: #f5f7f9;
  color: #11161c;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(74, 163, 255, 0.1), transparent 34%),
    #0a0d11;
}

.section-heading {
  max-width: 1120px;
  margin-bottom: 32px;
}

.section-heading h2,
.about-copy h2,
.contact-info h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.9rem);
  line-height: 1.08;
  text-wrap: balance;
}

.section-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: #4a535d;
  line-height: 1.65;
}

.section-note-dark {
  color: rgba(247, 249, 251, 0.66);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 218px;
  padding: 38px 30px 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(227, 232, 237, 0.92)),
    #fff;
  border: 1px solid rgba(17, 22, 28, 0.08);
  box-shadow: 0 20px 48px rgba(16, 22, 29, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  background: var(--blue);
  opacity: 0.85;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(16, 22, 29, 0.14);
  border-color: rgba(74, 163, 255, 0.34);
}

.offer-card-wide {
  grid-column: 1 / -1;
}

.offer-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  line-height: 1.15;
}

.offer-card p {
  margin-bottom: 18px;
  color: #4a535d;
  line-height: 1.65;
}

.offer-params-title {
  display: block;
  margin-top: auto;
  margin-bottom: 12px;
  color: #11161c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.offer-params li {
  position: relative;
  padding-left: 18px;
  color: #4a535d;
  font-size: 0.95rem;
  line-height: 1.45;
}

.offer-params li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(74, 163, 255, 0.35);
}

.offer-params strong {
  color: #11161c;
  font-weight: 800;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

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

.materials-section {
  padding-top: 42px;
  background: #f5f7f9;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid rgba(17, 22, 28, 0.09);
  box-shadow: 0 16px 34px rgba(16, 22, 29, 0.07);
  color: #11161c;
  font-weight: 800;
}

.pill-wide {
  flex: 0 1 520px;
}

.strengths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.strength {
  min-height: 176px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength span {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 44px;
  background: var(--blue);
  box-shadow: 0 0 24px rgba(74, 163, 255, 0.72);
}

.strength p {
  margin-bottom: 0;
  color: rgba(247, 249, 251, 0.86);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.industries-section {
  background: #f5f7f9;
}

.industry-card {
  min-height: 138px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background:
    linear-gradient(145deg, #ffffff, #e9eef3),
    #ffffff;
  border: 1px solid rgba(17, 22, 28, 0.09);
  box-shadow: 0 18px 42px rgba(16, 22, 29, 0.08);
}

.industry-card h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.machines {
  padding: 32px clamp(20px, 6vw, 82px) 28px;
  background: #f5f7f9;
  color: #11161c;
}

.machine-showcase {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 22, 28, 0.09);
  box-shadow: 0 24px 60px rgba(16, 22, 29, 0.1);
}

.machine-showcase > img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  background: #dfe5ea;
}

.machine-showcase.no-photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: stretch;
}

.detail-placeholder {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(145deg, #10161d, #303a45 52%, #070a0d);
}

.detail-placeholder::before,
.detail-placeholder::after,
.detail-placeholder span {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(90deg, #f0f4f7, #77838e, #222c36);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.detail-placeholder::before {
  left: 12%;
  right: 14%;
  top: 24%;
  height: 56px;
  transform: skewX(-18deg);
}

.detail-placeholder::after {
  left: 22%;
  right: 10%;
  bottom: 24%;
  height: 72px;
  transform: skewX(15deg);
}

.detail-placeholder span:nth-child(1) {
  width: 96px;
  height: 96px;
  right: 18%;
  top: 28%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 28%, #dce2e8 29% 42%, #697580 43% 100%);
}

.detail-placeholder span:nth-child(2) {
  width: 160px;
  height: 26px;
  left: 18%;
  bottom: 38%;
  transform: skewX(-18deg);
}

.detail-placeholder span:nth-child(3) {
  width: 8px;
  height: 70%;
  left: 52%;
  top: 15%;
  background: linear-gradient(180deg, transparent, rgba(74, 163, 255, 0.85), transparent);
  border: 0;
  box-shadow: 0 0 26px rgba(74, 163, 255, 0.46);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding: 84px clamp(20px, 6vw, 82px);
  background: #f5f7f9;
  color: #11161c;
}

.about-visual {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 360px;
  background:
    radial-gradient(circle at 50% 42%, rgba(74, 163, 255, 0.18), transparent 36%),
    linear-gradient(160deg, #11161c, #343e49 54%, #07090c);
  overflow: hidden;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: auto -10% 12% 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.about-logo-full {
  position: relative;
  z-index: 2;
  width: min(92%, 620px);
  height: auto;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.34));
}

.about-copy p {
  color: #4a535d;
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-tags span {
  padding: 10px 14px;
  background: #e6ebef;
  color: #11161c;
  font-weight: 800;
  font-size: 0.86rem;
}

.coverage-section {
  background:
    linear-gradient(120deg, rgba(74, 163, 255, 0.15), transparent 42%),
    #070a0d;
}

.coverage-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.coverage-box h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.9rem);
  line-height: 1.08;
  text-wrap: balance;
}

.coverage-title span {
  display: block;
}

.coverage-title-nowrap {
  white-space: nowrap;
}

.coverage-box p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(247, 249, 251, 0.72);
  line-height: 1.75;
}

.process-section {
  background: #f5f7f9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 22, 28, 0.1);
  border-left: 1px solid rgba(17, 22, 28, 0.1);
}

.process-step {
  display: grid;
  place-items: center;
  min-height: 172px;
  padding: 20px;
  border-right: 1px solid rgba(17, 22, 28, 0.1);
  border-bottom: 1px solid rgba(17, 22, 28, 0.1);
  background: rgba(255, 255, 255, 0.64);
}

.process-step span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 800;
}

.process-step p {
  margin-bottom: 0;
  color: #11161c;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 68px);
  padding: 84px clamp(20px, 6vw, 82px);
  background:
    linear-gradient(120deg, rgba(74, 163, 255, 0.14), transparent 36%),
    #050608;
}

.contact-info > p {
  max-width: 560px;
  color: rgba(247, 249, 251, 0.72);
  line-height: 1.65;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-person {
  display: grid;
  gap: 8px;
}

.contact-person + .contact-person {
  margin-top: 22px;
}

.contact-list .contact-person strong {
  color: rgba(247, 249, 251, 0.9);
  font-size: 0.98rem;
}

.contact-list .contact-person small {
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-list span {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  overflow-wrap: normal;
  color: var(--white);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(17, 22, 28, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(247, 249, 251, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.privacy-check {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: 0.78rem;
  line-height: 1.5;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input[type="file"] {
  width: 100%;
  color: rgba(247, 249, 251, 0.78);
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form small {
  color: rgba(247, 249, 251, 0.52);
  line-height: 1.5;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.09);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 249, 251, 0.42);
}

.privacy-section {
  padding: 110px clamp(20px, 6vw, 82px);
  background: #f5f7f9;
  color: #11161c;
}

.privacy-page {
  min-height: 82vh;
  padding-top: 150px;
}

.privacy-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.02;
}

.privacy-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: #4a535d;
  line-height: 1.7;
}

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

.privacy-card {
  min-height: 220px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(17, 22, 28, 0.09);
  box-shadow: 0 18px 44px rgba(16, 22, 29, 0.07);
}

.privacy-card h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.privacy-card p {
  margin-bottom: 0;
  color: #4a535d;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 82px);
  background: #030405;
  color: rgba(247, 249, 251, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin-bottom: 0;
}

.privacy-note {
  flex: 1 1 520px;
  color: rgba(247, 249, 251, 0.44);
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  h1 {
    font-size: clamp(2.65rem, 6.4vw, 4.9rem);
    max-width: 1000px;
  }

  .section-heading {
    max-width: 960px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-info h2,
  .coverage-box h2 {
    font-size: clamp(2rem, 4.4vw, 3.35rem);
    line-height: 1.1;
  }

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

  .offer-card-wide {
    grid-column: 1 / -1;
  }

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

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

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

@media (max-width: 820px) {
  .site-header {
    padding: 12px 16px;
  }

  .language-switch {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
    order: 3;
    margin-left: 10px;
  }

  .main-nav {
    order: 4;
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(5, 6, 8, 0.96);
    border: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 15px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 110px 18px 58px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 8vw, 4rem);
    line-height: 1.08;
  }

  .section-heading {
    max-width: 100%;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-info h2,
  .coverage-box h2 {
    font-size: clamp(1.95rem, 6vw, 3rem);
    line-height: 1.12;
  }

  .hero-panel {
    margin-top: 40px;
  }

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

  .offer-card-wide {
    grid-column: auto;
  }

  .steel-plate {
    right: -45vw;
    bottom: 20vh;
    width: 110vw;
    height: 48vh;
    opacity: 0;
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .coverage-box {
    grid-template-columns: 1fr;
  }

  .machine-showcase > img {
    aspect-ratio: 4 / 3;
  }

  .machine-showcase.no-photo {
    grid-template-columns: 1fr;
  }

  .detail-placeholder {
    min-height: 300px;
  }

  .about-visual {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .logo {
    width: 138px;
    min-width: 138px;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-info h2,
  .coverage-box h2 {
    font-size: clamp(1.7rem, 8.4vw, 2.35rem);
    line-height: 1.16;
  }

  .section,
  .machines,
  .about,
  .contact,
  .privacy-section {
    padding-right: 18px;
    padding-left: 18px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .machines {
    padding-top: 42px;
    padding-bottom: 34px;
  }

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

  .pill-wide {
    flex-basis: 100%;
  }

  .strengths,
  .industry-grid,
  .process-steps,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-wide {
    grid-column: auto;
  }

  .offer-card {
    min-height: 230px;
    padding: 36px 28px 30px;
  }

  .offer-card::before {
    left: 28px;
    right: 28px;
  }

  .strength {
    min-height: 160px;
  }

  .industry-card {
    min-height: auto;
  }

  .strength span {
    margin-bottom: 44px;
  }

  .process-step span {
    margin-bottom: 34px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-right: 18px;
    padding-left: 18px;
    text-align: center;
  }

  .hero-panel {
    padding: 22px;
  }

  .hero-panel strong {
    font-size: 1.55rem;
  }

  .machine-showcase > img {
    aspect-ratio: 1 / 1;
  }

  .detail-placeholder {
    min-height: 250px;
  }

  .about-visual {
    min-height: 240px;
  }

  .about-tags span {
    width: 100%;
    text-align: center;
  }

  .contact-form {
    padding: 20px;
  }

  .privacy-card {
    min-height: auto;
    padding: 22px;
  }

  .contact-list a,
  .contact-list strong {
    font-size: 1rem;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .logo {
    width: 124px;
    min-width: 124px;
  }

  .language-switch button {
    min-width: 30px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .section-heading h2,
  .about-copy h2,
  .contact-info h2,
  .coverage-box h2 {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .section,
  .machines,
  .about,
  .contact,
  .privacy-section {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 560px) {
  .coverage-box h2.coverage-title {
    font-size: clamp(1rem, 5.3vw, 1.85rem);
    line-height: 1.18;
  }
}
