:root {
  --ink: #10212a;
  --ink-soft: #24343c;
  --paper: #f6f7f4;
  --white: #ffffff;
  --line: #d8dfdc;
  --muted: #65747b;
  --amber: #f2b84b;
  --teal: #237a76;
  --blue: #2868a7;
  --shadow: 0 22px 55px rgba(16, 33, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 10px clamp(20px, 3.2vw, 52px);
  border-bottom: 1px solid rgba(16, 33, 42, 0.14);
  background: rgba(246, 247, 244, 0.97);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 1.52rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(35, 122, 118, 0.12);
  color: var(--teal);
  outline: none;
}

.site-nav a[aria-current="page"] {
  background: rgba(35, 122, 118, 0.12);
  color: var(--teal);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--teal);
  color: var(--white);
}

.site-nav .nav-language {
  min-width: 40px;
  justify-content: center;
  border: 1px solid rgba(16, 33, 42, 0.18);
  padding-inline: 9px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 124px clamp(18px, 6vw, 80px) 48px;
  background:
    linear-gradient(90deg, rgba(16, 33, 42, 0.92) 0%, rgba(16, 33, 42, 0.78) 42%, rgba(16, 33, 42, 0.2) 100%),
    url("../assets/images/hero-mechanical-inspection.png") center / cover no-repeat;
  color: var(--white);
}

.hero-content {
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3.15rem, 11vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2.3vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
}

.button-primary {
  background: var(--amber);
  color: #17242a;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd16b;
  outline: none;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(860px, 100%);
  margin: 54px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(16, 33, 42, 0.72);
}

.hero-facts dt {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 800;
}

.catalog-hero {
  padding: 138px 0 72px;
  background:
    linear-gradient(90deg, rgba(16, 33, 42, 0.94) 0%, rgba(16, 33, 42, 0.8) 52%, rgba(16, 33, 42, 0.46) 100%),
    url("../assets/images/hero-mechanical-room.jpg") center / cover no-repeat;
  color: var(--white);
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.catalog-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.6rem, 6.6vw, 6.1rem);
  line-height: 0.95;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.catalog-summary {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 33, 42, 0.72);
  padding: 22px;
}

.catalog-summary strong,
.catalog-summary span {
  display: block;
}

.catalog-summary strong {
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-summary span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 30px 0;
}

.intro-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 2px solid var(--amber);
  color: var(--ink);
  font-weight: 900;
}

.focus-section {
  padding-top: clamp(50px, 6vw, 78px);
  background: #eef2ef;
  border-bottom: 1px solid var(--line);
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.focus-copy {
  max-width: 620px;
}

.focus-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.focus-cards article {
  min-height: 224px;
  border: 1px solid rgba(16, 33, 42, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
  box-shadow: 0 14px 30px rgba(16, 33, 42, 0.07);
}

.focus-cards span {
  display: inline-block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-cards h3 {
  margin-top: 12px;
  font-size: 1.08rem;
}

.focus-cards p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  padding: clamp(62px, 8vw, 104px) 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 4.8vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.17rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-grid > div > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card {
  display: flex;
  grid-column: span 2;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card-feature {
  grid-column: span 3;
}

.service-media {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-feature .service-media {
  aspect-ratio: 16 / 8.5;
}

.service-media-drawing {
  background: #f7f8f5;
  padding: 18px;
}

.service-media-drawing img {
  object-fit: contain;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.card-number {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3 {
  margin-top: 10px;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

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

.catalog-feature-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.catalog-feature-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.catalog-feature-grid div {
  padding: 24px;
}

.catalog-feature-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.catalog-scope-list {
  grid-template-columns: 1fr;
}

.catalog-scope-list article {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
}

.catalog-scope-list article:nth-child(even) img {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.catalog-scope-list article:nth-child(even) div {
  order: 1;
}

.catalog-scope-list img {
  height: 100%;
  min-height: 260px;
  aspect-ratio: auto;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.catalog-scope-list div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.catalog-scope-list h3 {
  margin-top: 10px;
  font-size: clamp(1.28rem, 2vw, 1.85rem);
}

.catalog-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-deliverables span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.about-section {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.about-copy {
  max-width: 820px;
}

.about-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.about-points {
  display: grid;
  gap: 12px;
}

.about-points article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
}

.about-points span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.standards-panel {
  margin-top: clamp(34px, 6vw, 70px);
  padding-top: clamp(28px, 5vw, 52px);
  border-top: 1px solid rgba(16, 33, 42, 0.12);
}

.standards-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.standards-heading h3 {
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.04;
}

.standards-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.standards-grid article {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}

.standards-grid strong,
.standards-grid span {
  display: block;
}

.standards-grid strong {
  color: var(--teal);
  font-size: 1.08rem;
  font-weight: 900;
}

.standards-grid span {
  margin-top: 12px;
  color: var(--ink-soft);
  font-weight: 700;
}

.brands-section {
  overflow: hidden;
  background: #101f26;
  color: var(--white);
}

.brands-section h2 {
  color: var(--white);
}

.brand-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 30px;
}

.brand-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 12px;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0;
}

.logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 82px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  padding: 16px 20px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.logo-card.logo-dark {
  background: #0b171c;
}

.logo-card img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.logo-card.logo-compact img {
  width: auto;
  max-width: 78px;
  max-height: 58px;
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.supply-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 22px;
}

.supply-grid h3 {
  color: var(--white);
}

.supply-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.muted {
  background: #e8eeee;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.principle-list article,
.process-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.principle-list article {
  padding: 22px;
}

.principle-list p,
.process-grid p,
.future-grid p,
.credentials p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.process-grid article {
  min-height: 230px;
  padding: 22px;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.sectors {
  background: var(--white);
}

.sector-grid,
.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sector-grid span,
.credential-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 10px 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.credentials-section {
  background: linear-gradient(180deg, #eef2ef 0%, #f7f8f5 100%);
}

.credentials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.credential-copy p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.08rem;
}

.credential-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(16, 33, 42, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.credential-panel article {
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
  padding: 18px;
}

.credential-panel strong,
.credential-panel span {
  display: block;
}

.credential-panel strong {
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.credential-panel span {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.authority-scope {
  margin-top: clamp(34px, 6vw, 72px);
  padding-top: clamp(28px, 5vw, 56px);
  border-top: 1px solid rgba(16, 33, 42, 0.12);
}

.authority-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.authority-media-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(16, 33, 42, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(16, 33, 42, 0.06);
}

.authority-media-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.authority-media-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.authority-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  max-width: none;
}

.authority-heading-with-media {
  align-items: center;
}

.authority-heading-with-media .authority-media-grid {
  margin-bottom: 0;
}

.authority-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 4.1vw, 3.8rem);
  line-height: 1.04;
}

.authority-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.authority-grid article {
  border: 1px solid rgba(16, 33, 42, 0.12);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 14px 28px rgba(16, 33, 42, 0.06);
}

.authority-grid h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.authority-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.future {
  background: var(--ink);
  color: var(--white);
}

.future h2 {
  color: var(--white);
}

.future-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.future-grid p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 26px;
  color: var(--ink-soft);
  font-style: normal;
  box-shadow: var(--shadow);
}

.contact-card strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.contact-card a {
  font-weight: 900;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--teal);
  outline: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #0b171c;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    min-height: 78px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 1.22rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
  }

  .hero-facts,
  .catalog-hero-grid,
  .focus-layout,
  .service-grid,
  .catalog-feature-grid,
  .authority-media-grid,
  .about-grid,
  .standards-heading,
  .brand-heading,
  .supply-grid,
  .authority-grid,
  .authority-heading,
  .split-layout,
  .credentials,
  .future-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .principle-list {
    grid-template-columns: 1fr;
  }

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

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

  .service-card,
  .service-card-feature {
    grid-column: auto;
  }

  .catalog-scope-list article {
    grid-template-columns: 1fr;
  }

  .catalog-scope-list article:nth-child(even) img,
  .catalog-scope-list article:nth-child(even) div {
    order: initial;
  }

  .catalog-scope-list img,
  .catalog-scope-list article:nth-child(even) img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
}

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

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 78px 18px 34px;
    background:
      linear-gradient(180deg, rgba(16, 33, 42, 0.94) 0%, rgba(16, 33, 42, 0.82) 62%, rgba(16, 33, 42, 0.58) 100%),
      url("../assets/images/hero-mechanical-inspection.png") center / cover no-repeat;
  }

  .catalog-hero {
    padding: 92px 0 44px;
  }

  .focus-cards,
  .process-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .focus-cards article {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

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

  .hero-facts,
  .credential-panel,
  .standards-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-body,
  .about-points article,
  .standards-grid article,
  .supply-grid article,
  .authority-grid article,
  .principle-list article,
  .process-grid article,
  .contact-card {
    padding: 20px;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .site-footer {
    display: grid;
  }
}

/* Multi-page corporate site */

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--teal);
  outline: none;
}

.button-light {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.home-hero {
  min-height: 78svh;
}

.home-hero h1 {
  font-size: clamp(3.4rem, 9vw, 6.4rem);
}

.home-services {
  background: var(--paper);
}

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

.home-service-grid .service-card {
  grid-column: auto;
}

.service-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  padding-top: 22px;
  border-bottom: 2px solid var(--amber);
  color: var(--ink);
  font-weight: 900;
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--teal);
  outline: none;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.solution-band,
.callout-section {
  background: var(--ink);
  color: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.solution-band h2,
.callout-section h2 {
  color: var(--white);
}

.solution-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.solution-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-steps span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
}

.solution-steps strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
}

.catalog-promo {
  background: var(--white);
}

.catalog-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

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

.catalog-promo-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.catalog-promo-grid > div:last-child > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.brand-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 12px;
}

.brand-track span {
  display: grid;
  place-items: center;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.brand-track img {
  width: 100%;
  max-width: 142px;
  max-height: 54px;
  object-fit: contain;
  opacity: 1;
}

.brand-track .brand-tile-dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: #0b1f2a;
}

.brand-track span:hover {
  border-color: rgba(35, 122, 118, 0.72);
}

.home-standards {
  border-block: 1px solid rgba(16, 33, 42, 0.1);
  background: #edf1ee;
}

.home-standards-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.home-standards-copy h2 {
  max-width: 720px;
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.home-standards-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.standards-ribbon {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 33, 42, 0.16);
}

.standards-ribbon span {
  min-height: 74px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(16, 33, 42, 0.16);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
}

.standards-ribbon span:nth-child(odd) {
  border-right: 1px solid rgba(16, 33, 42, 0.16);
  padding-right: 20px;
}

.standards-ribbon span:nth-child(even) {
  padding-left: 20px;
}

.standards-ribbon .standards-wide {
  grid-column: 1 / -1;
  border-right: 0;
  padding-inline: 0;
}

.references-band {
  overflow: hidden;
  background: var(--paper);
}

.references-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 32px;
}

.references-heading h2 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.references-heading > div:last-child {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.references-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.reference-marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.reference-marquee-track {
  display: flex;
  width: max-content;
  animation: reference-scroll 48s linear infinite;
}

.reference-marquee:hover .reference-marquee-track {
  animation-play-state: paused;
}

.reference-logo-card {
  width: 190px;
  height: 112px;
  flex: 0 0 190px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  background: var(--white);
  padding: 22px;
}

.reference-logo-card img {
  width: 100%;
  max-width: 144px;
  max-height: 58px;
  object-fit: contain;
}

.reference-logo-card.logo-reverse {
  background: #0b1f2a;
}

.reference-logo-card.logo-tall img {
  max-width: 92px;
  max-height: 68px;
}

@keyframes reference-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reference-marquee-track {
    animation: none;
  }
}

.references-page-intro {
  padding: 154px 0 64px;
  background: #0b1f2a;
  color: var(--white);
}

.references-page-intro .breadcrumb {
  margin-bottom: 20px;
}

.references-page-intro h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1;
}

.references-page-intro p:not(.breadcrumb) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

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

.reference-logo-grid .reference-logo-card {
  width: auto;
  height: auto;
  min-height: 160px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reference-logo-grid .reference-logo-card img {
  max-width: 168px;
  max-height: 70px;
}

.reference-logo-grid .reference-logo-card.logo-tall img {
  max-width: 108px;
  max-height: 82px;
}

.page-hero {
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: 156px 0 64px;
  background:
    linear-gradient(90deg, rgba(16, 33, 42, 0.95) 0%, rgba(16, 33, 42, 0.78) 53%, rgba(16, 33, 42, 0.35) 100%),
    var(--page-image) center / cover no-repeat;
  color: var(--white);
}

.services-page-hero {
  --page-image: url("../assets/images/fortas-technical-inspection.jpg");
}

.periodic-page-hero {
  --page-image: url("../assets/images/service-pressure-gauge.jpg");
}

.mechanical-page-hero {
  --page-image: url("../assets/images/hero-mechanical-room.jpg");
}

.industrial-page-hero {
  --page-image: url("../assets/images/fortas-api650-tank.jpg");
}

.corporate-page-hero,
.credentials-page-hero {
  --page-image: url("../assets/images/fortas-technical-inspection.jpg");
}

.contact-page-hero {
  --page-image: url("../assets/images/hero-mechanical-room.jpg");
}

.catalog-page-hero {
  --page-image: url("../assets/images/fortas-api2000-venting.jpg");
}

.page-hero-content {
  width: min(1180px, calc(100% - 36px));
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.page-hero .hero-copy {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--amber);
  outline: none;
}

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

.service-directory article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(16, 33, 42, 0.1);
}

.service-directory article > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-directory article > div {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 28px;
}

.service-directory h3 {
  margin-top: 10px;
  font-size: 1.42rem;
}

.service-directory p {
  color: var(--ink-soft);
}

.plain-list,
.check-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.plain-list li,
.check-list li {
  position: relative;
  padding-left: 20px;
}

.plain-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.detail-grid,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

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

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

.scope-grid article {
  min-height: 260px;
  border-top: 4px solid var(--teal);
  background: var(--white);
  padding: 26px;
  box-shadow: 0 14px 32px rgba(16, 33, 42, 0.08);
}

.scope-grid.compact article {
  min-height: 220px;
}

.scope-grid span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.scope-grid h3 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.scope-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.scope-note {
  max-width: 880px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.detail-split.reverse .detail-media {
  order: 2;
}

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

.detail-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-split > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.numbered-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: step;
}

.numbered-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.numbered-list strong {
  color: var(--ink);
}

.evidence-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.evidence-list article {
  display: grid;
  grid-template-columns: minmax(190px, 0.4fr) minmax(0, 0.6fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.evidence-list p {
  margin: 0;
  color: var(--muted);
}

.gallery-band {
  padding-top: 0;
}

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

.image-trio figure {
  margin: 0;
}

.image-trio img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-trio figcaption {
  padding: 14px 0 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.standards-list,
.authority-list,
.catalog-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.standards-list span,
.authority-list span,
.authority-list a,
.catalog-index span {
  display: flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px 16px;
  color: var(--ink-soft);
  font-weight: 800;
}

.authority-list a:hover,
.authority-list a:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
  outline: none;
}

.corporate-statement {
  border-left: 4px solid var(--amber);
  background: var(--ink);
  color: var(--white);
  padding: clamp(28px, 5vw, 48px);
}

.corporate-statement span,
.corporate-statement strong {
  display: block;
}

.corporate-statement span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.corporate-statement strong {
  margin-top: 18px;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  line-height: 1.25;
}

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

.credential-grid article {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.credential-grid span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.credential-grid h3 {
  margin-top: 12px;
}

.credential-grid p {
  color: var(--muted);
}

.credential-promo {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.direct-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.direct-contact-list a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  min-height: 72px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.direct-contact-list a:last-child {
  border-bottom: 1px solid var(--line);
}

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

.direct-contact-list a:hover strong,
.direct-contact-list a:focus-visible strong {
  color: var(--teal);
}

.address-panel {
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(28px, 5vw, 46px);
  font-style: normal;
}

.address-panel span,
.address-panel strong {
  display: block;
}

.address-panel span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.address-panel strong {
  margin-top: 14px;
  font-size: 1.5rem;
}

.address-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.address-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.callout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.callout-grid .inline-actions {
  margin-top: 0;
}

.catalog-overview {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.pdf-section {
  background: #e9eeeb;
}

.pdf-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.catalog-pdf {
  display: block;
  width: 100%;
  height: min(82svh, 980px);
  min-height: 680px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pdf-fallback {
  display: grid;
  min-height: 360px;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 30px;
  text-align: center;
}

@media (max-width: 1120px) {
  .brand-track {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 1.3rem;
  }

  .brand small {
    display: none;
  }

  .site-nav a {
    padding-inline: 7px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .home-service-grid,
  .service-directory,
  .solution-grid,
  .catalog-promo-grid,
  .detail-grid,
  .content-grid,
  .detail-split,
  .contact-page-grid,
  .callout-grid {
    grid-template-columns: 1fr;
  }

  .home-standards-layout,
  .references-heading {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    min-height: 520px;
    padding: 92px 0 52px;
  }

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

  .detail-split.reverse .detail-media {
    order: initial;
  }

  .callout-grid .inline-actions {
    margin-top: 4px;
  }
}

@media (max-width: 620px) {
  .home-hero {
    min-height: auto;
  }

  .home-service-grid,
  .scope-grid,
  .scope-grid.compact,
  .credential-grid,
  .image-trio,
  .standards-list,
  .authority-list,
  .catalog-index,
  .brand-track {
    grid-template-columns: 1fr;
  }

  .standards-ribbon {
    grid-template-columns: 1fr;
  }

  .standards-ribbon span,
  .standards-ribbon span:nth-child(odd),
  .standards-ribbon span:nth-child(even),
  .standards-ribbon .standards-wide {
    grid-column: auto;
    border-right: 0;
    padding-inline: 0;
  }

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

  .reference-logo-grid .reference-logo-card {
    min-height: 128px;
    padding: 18px;
  }

  .references-page-intro {
    padding: 112px 0 48px;
  }

  .page-hero {
    min-height: 470px;
    padding: 76px 0 38px;
    background:
      linear-gradient(180deg, rgba(16, 33, 42, 0.96) 0%, rgba(16, 33, 42, 0.82) 72%, rgba(16, 33, 42, 0.62) 100%),
      var(--page-image) center / cover no-repeat;
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .service-directory article > div {
    min-height: auto;
    padding: 22px;
  }

  .scope-grid article,
  .scope-grid.compact article,
  .credential-grid article {
    min-height: auto;
    padding: 22px;
  }

  .evidence-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .direct-contact-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pdf-heading {
    display: grid;
    align-items: start;
  }

  .catalog-pdf {
    height: 66svh;
    min-height: 480px;
  }

  .inline-actions .button,
  .section-action .button {
    width: 100%;
  }
}
