/* AJ Contract theme
   Colors: bg #fff, ink #121212, accent #F29D20, accent-hover #F5B55C, muted panel #F0F0F0 */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.aj-page {
  font-family: 'proxima-nova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #121212;
  background: #fff;
  overflow-x: hidden;
}

.aj-page a {
  text-decoration: none;
}

a {
  color: #F29D20;
}

a:hover {
  color: #F5B55C;
}

.aj-page img {
  max-width: 100%;
}

.aj-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.aj-container--narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 64px;
}

.aj-container--faq {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 64px;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
}

h3 {
  font-weight: 700;
}

.aj-h1 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(30px, 3.125vw, 55px);
  margin: 70px 0 28px;
  max-width: 693px;
}

.aj-h2 {
  font-weight: 900;
  color: #121212;
  margin: 0;
  overflow-wrap: break-word;
}

.aj-accent {
  color: #F29D20;
}

.aj-accent--italic {
  color: #F29D20;
  font-style: italic;
}

.aj-icon-accent {
  color: #F29D20;
}

/* Buttons */
a.aj-btn {
  background: #F29D20;
  color: #121212;
  border: none;
  font-size: clamp(12px, 0.833vw, 16px);
  font-weight: 700;
  padding: 16px 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

a.aj-btn:hover {
  background: #F5B55C;
  color: #121212;
}

.aj-btn--md {
  font-size: clamp(12px, 0.833vw, 16px);
  padding: 14px 24px;
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
}

.aj-btn--sm {
  font-size: clamp(11px, 0.781vw, 15px);
  padding: 13px 22px;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

/* -------------------- HEADER -------------------- */
.aj-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #121212;
}

.aj-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  gap: 24px;
}

.aj-logo img {
  height: 50px;
  width: auto;
  max-width: none;
  display: block;
}

.aj-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex: 1;
}

.aj-topbar-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: clamp(12px, 0.677vw, 14px);
  color: #CFCFCF;
}

.aj-topbar-link {
  color: #CFCFCF;
  display: flex;
  align-items: center;
  gap: 6px;
}

.aj-topbar-divider {
  width: 1px;
  height: 16px;
  background: #444;
  display: inline-block;
}

.aj-lang-switch {
  display: flex;
  align-items: center;
  gap: 14px;
}

.aj-lang-active {
  color: #F29D20;
  font-weight: 700;
}

.aj-lang {
  color: #E8E8E8;
}

.aj-nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.aj-nav-link {
  color: #fff;
  font-size: clamp(12px, 0.729vw, 14px);
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.aj-nav-link svg {
  stroke: #F29D20;
}

.aj-nav-item {
  position: relative;
  padding: 8px 0;
}

.aj-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #1A1A1A;
  padding: 8px 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  z-index: 60;
}

.aj-nav-item--dropdown:hover .aj-dropdown,
.aj-nav-item--dropdown:focus-within .aj-dropdown {
  display: block;
}

.aj-dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #E8E8E8;
  font-size: clamp(11px, 0.781vw, 15px);
  font-weight: 400;
}

.aj-mobile-nav-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.aj-mobile-nav-btn span {
  width: 26px;
  height: 2px;
  background: #fff;
  display: block;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.aj-mobile-nav-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.aj-mobile-nav-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.aj-mobile-nav-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, visibility 0s linear 0.3s;
  visibility: hidden;
  background: #1A1A1A;
}

.aj-mobile-nav-panel.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.3s ease, visibility 0s linear 0s;
}

.aj-mobile-nav-panel-inner {
  overflow: hidden;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aj-mobile-nav-list > .aj-mobile-nav-link:last-child,
.aj-mobile-nav-list > .aj-mobile-nav-group:last-child {
  border-bottom: none;
}

.aj-mobile-nav-link {
  display: block;
  color: #fff;
  font-size: clamp(13px, 0.885vw, 17px);
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid #2C2C2C;
}

.aj-mobile-nav-group {
  border-bottom: 1px solid #2C2C2C;
}

.aj-mobile-nav-toggle {
  color: #fff;
  font-size: clamp(13px, 0.885vw, 17px);
  font-weight: 700;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.aj-mobile-dropdown {
  display: none;
  padding: 0 0 12px 16px;
  flex-direction: column;
  gap: 10px;
}

.aj-mobile-dropdown.is-open {
  display: flex;
}

.aj-mobile-dropdown-link {
  color: #CFCFCF;
  font-size: clamp(11px, 0.781vw, 15px);
}

/* -------------------- HERO -------------------- */
.aj-hero {
  position: relative;
  background: #121212;
  overflow: hidden;
}

.aj-hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  height: 100%;
  min-height: 60vh;
  max-height: 700px;
  position: relative;
}

.aj-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.aj-hero-left {
  position: relative;
  z-index: 1;
}

.aj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.68) 0%, rgba(10, 10, 10, 0.4) 35%, rgba(10, 10, 10, 0.9) 100%);
}

.aj-hero-left-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 64px;
}

.aj-hero-lead {
  color: #E4E4E4;
  font-size: clamp(14px, 0.938vw, 18px);
  font-weight: 400;
  margin: 0 0 28px;
}

.aj-hero-note {
  max-width: 520px;
  margin-top: 64px;
}

.aj-hero-note-eyebrow {
  color: #F29D20;
  font-weight: 700;
  font-size: clamp(11px, 0.781vw, 15px);
  letter-spacing: 0.3px;
  margin: 0 0 10px;
}

.aj-hero-note-text {
  color: #C9C9C9;
  font-size: clamp(14px, 0.781vw, 15px);
  line-height: 1.4;
  margin: 0;
}

.aj-hero-right {
  position: relative;
  z-index: 1;
  height: 100%;
}

.aj-hero-scroll-btn {
  position: absolute;
  width: 56px;
  height: 56px;
  background: #121212;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 20px;
  bottom: 20px;
}

/* -------------------- INTRO -------------------- */
.aj-intro {
  background: #F0F0F0;
  padding: 120px 64px;
}

.aj-two-col {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
}

.aj-two-col > *,
.aj-safety-grid > *,
.aj-footer-grid > *,
.aj-machine-grid > *,
.aj-ref-slide > * {
  min-width: 0;
}

.aj-intro-kicker {
  color: #F29D20;
  font-weight: 700;
  font-size: clamp(15px, 1.042vw, 20px);
  margin: 0;
}

.aj-h2.aj-h2 {
  font-size: clamp(28px, 1.979vw, 38px);
}

.aj-intro > .aj-container > div:first-child .aj-h2 {
  font-size: clamp(28px, 1.979vw, 38px);
  margin: 0 0 10px;
  overflow-wrap: break-word;
}

.aj-intro-text {
  font-size: clamp(15px, 0.833vw, 16px);
  line-height: 1.4;
  color: #333;
  margin: 0 0 24px;
}

/* -------------------- MACHINES -------------------- */
.aj-machines {
  background: #fff;
  padding: 106px 64px;
}

.aj-machines-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.aj-machines-heading .aj-h2 {
  font-size: clamp(25px, 1.719vw, 33px);
  margin: 0 0 14px;
}

.aj-machines-lead {
  font-size: clamp(14px, 0.833vw, 16px);
  color: #444;
  margin: 0;
}

.aj-machine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.aj-machine-card {
  background: #fff;
  border: 1px solid #E5E5E5;
  padding: 40px 40px 32px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%);
}

.aj-machine-img {
  width: 220px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.aj-machine-title {
  font-weight: 700;
  font-size: clamp(16px, 1.146vw, 22px);
  margin: 0 0 12px;
  color: #121212;
}

.aj-machine-text {
  font-size: clamp(13px, 0.729vw, 14px);
  line-height: 1.4;
  color: #555;
  margin: 0 0 24px;
}

.aj-dots-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.aj-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  cursor: pointer;
  background: #DADADA;
  display: inline-block;
  border: none;
  padding: 0;
}

.aj-dot.is-active {
  background: #333333;
}

.aj-dot--light {
  background: #555555;
}

.aj-dot--light.is-active {
  background: #FFFFFF;
}

.aj-dots-next,
.aj-ref-prev,
.aj-ref-next {
  margin-left: 14px;
  width: 50px;
  height: 44px;
  background: #F29D20;
  border: none;
  color: #121212;
  cursor: pointer;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------- FAQ -------------------- */
.aj-faq {
  background: #F0F0F0;
  padding: 88px 64px;
}

.aj-faq-heading {
  text-align: center;
  margin-bottom: 40px;
}

.aj-faq-kicker {
  color: #666;
  font-size: clamp(11px, 0.781vw, 15px);
  margin: 0 0 8px;
}

.aj-faq-heading .aj-h2 {
  font-size: clamp(30px, 2.083vw, 40px);
}

.aj-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aj-faq-item {
  background: #fff;
  padding: 26px 28px;
  cursor: pointer;
}

.aj-faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
}

.aj-faq-num {
  color: #B0B0B0;
  font-weight: 400;
  font-size: clamp(15px, 1.042vw, 20px);
  min-width: 32px;
}

.aj-faq-question-text {
  font-weight: 700;
  font-size: clamp(17px, 0.938vw, 18px);
  color: #121212;
  flex: 1;
}

.aj-faq-icon {
  font-size: clamp(16px, 1.146vw, 22px);
  color: #121212;
  min-width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.aj-faq-item.is-open .aj-faq-icon {
  transform: rotate(180deg);
}

.aj-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.aj-faq-item.is-open .aj-faq-answer {
  grid-template-rows: 1fr;
}

.aj-faq-answer-text {
  overflow: hidden;
  font-size: clamp(15px, 0.833vw, 16px);
  line-height: 1.4;
  color: #555;
  margin: 0;
  padding: 16px 0 0 52px;
}

/* -------------------- REFERENCES -------------------- */
.aj-references {
  background: #121212;
  padding: 88px 64px;
}

.aj-references-heading {
  font-size: clamp(30px, 2.083vw, 40px);
  margin: 0 0 44px;
  color: #fff;
  text-align: center;
}

.aj-ref-grid {
  position: relative;
}

.aj-ref-slide {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 56px;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.aj-ref-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.aj-ref-video {
  position: relative;
  background: #1E1E1E;
  aspect-ratio: 16 / 10;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
  overflow: hidden;
}

.aj-ref-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.aj-ref-place-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.aj-ref-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F29D20;
  display: inline-block;
}

.aj-ref-place {
  color: #EDEDED;
  font-weight: 700;
  font-size: clamp(10px, 0.729vw, 14px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.aj-ref-title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(21px, 1.458vw, 28px);
  margin: 0 0 20px;
}

.aj-ref-text {
  color: #B8B8B8;
  font-size: clamp(15px, 0.833vw, 16px);
  line-height: 1.4;
  margin: 0 0 16px;
}

.aj-ref-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

/* -------------------- SAFETY -------------------- */
.aj-safety {
  background: #F0F0F0;
  padding: 88px 64px;
}

.aj-safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin: 0 auto;
}

.aj-safety-col .aj-h2 {
  font-size: clamp(22px, 1.562vw, 30px);
  margin: 0 0 20px;
}

.aj-safety-text {
  font-size: clamp(15px, 0.833vw, 16px);
  line-height: 1.4;
  color: #444;
  margin: 0 0 20px;
}

.aj-safety-text:last-child {
  margin: 0;
}

.aj-safety-grid > .aj-safety-col:first-child {
  padding-right: 48px;
}

.aj-safety-divider {
  border-left: 1px solid #D8D8D8;
  padding-left: 48px;
}

/* -------------------- FOOTER -------------------- */
.aj-footer {
  background: #121212;
  padding: 102px 0 0;
}

.aj-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding: 0 64px 102px;
}

.aj-footer-logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.aj-footer-about-text {
  color: #9E9E9E;
  font-size: clamp(14px, 0.781vw, 15px);
  line-height: 1.4;
  max-width: 400px;
  margin: 0;
}

.aj-footer-contact {
  border-left: 1px solid #4A4A4A;
  padding-left: 48px;
}

.aj-footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.aj-footer-contact-row--address {
  align-items: flex-start;
  margin-bottom: 24px;
}

.aj-footer-contact-row--address svg {
  margin-top: 2px;
  flex-shrink: 0;
}

.aj-footer-contact-row a,
.aj-footer-contact-row span {
  color: #CFCFCF;
  font-size: clamp(11px, 0.781vw, 15px);
}

.aj-footer-follow {
  color: #9E9E9E;
  font-size: clamp(10px, 0.729vw, 14px);
  margin: 0 0 10px;
}

.aj-footer-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(11px, 0.781vw, 15px);
  font-weight: 700;
}

.aj-footer-badges-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.aj-footer-badges-row img {
  height: 73px;
  width: auto;
  display: block;
}

.aj-footer-badges-row img.aj-footer-badge--wide {
  width: 120px;
  height: auto;
}

.aj-footer-bar {
  background: #F29D20;
  padding: 16px 64px;
}

.aj-footer-bar a {
  color: #121212;
}

.aj-footer-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.aj-footer-bar-inner span {
  color: #121212;
  font-size: clamp(10px, 0.677vw, 13px);
}

.aj-footer-bar-inner span:first-child {
  font-weight: 700;
}

/* -------------------- INNER-PAGE TYPE UTILITIES -------------------- */
.aj-h1--inner {
  font-size: clamp(32px, 2.188vw, 42px);
  margin: 0 0 28px;
  max-width: 680px;
}

.aj-h2--sub {
  font-size: clamp(16px, 1.146vw, 22px);
  margin: 0 0 16px;
}

.aj-h2--onDark {
  color: #fff;
}

.aj-h2--md {
  font-size: clamp(26px, 1.771vw, 34px);
}

.aj-text--onDark {
  color: #B8B8B8;
}

.aj-text--onDark2 {
  color: #E4E4E4;
}

.aj-container--faq-wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(0, 3.33vw, 64px);
}

.aj-checklist--spaced {
  margin-bottom: 32px;
}

.aj-media-block {
  width: 100%;
  height: auto;
  display: block;
}

.aj-text-bold {
  font-weight: 700;
}

/* -------------------- INNER-PAGE HERO (image based) -------------------- */
.aj-hero-eyebrow {
  color: #F29D20;
  font-weight: 700;
  font-size: clamp(11px, 0.781vw, 15px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.aj-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.aj-hero--inner .aj-hero-left-content {
  justify-content: flex-end;
  padding-bottom: 72px;
}

.aj-hero--center .aj-hero-left-content {
  justify-content: center;
}

.aj-hero-grid--wide {
  grid-template-columns: 65% 35%;
}

/* -------------------- SHARED INNER-PAGE GRIDS -------------------- */
.aj-intro-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
}

.aj-capacity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.aj-list-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.aj-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}

.aj-machinepark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.aj-contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.aj-omoss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.aj-contactform-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
}

.aj-intro-grid > *,
.aj-capacity-grid > *,
.aj-list-quote-grid > *,
.aj-omoss-grid > *,
.aj-contactform-grid > * {
  min-width: 0;
}

/* -------------------- QUOTE (shared pull-quote section) -------------------- */
.aj-quote {
  padding: 100px 64px;
}

.aj-quote--tall {
  padding-bottom: 130px;
}

.aj-quote--orange {
  background: #F29D20;
}

.aj-quote--dark {
  background: #121212;
}

.aj-quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.aj-quote-icon {
  display: block;
  margin-bottom: 24px;
}

.aj-quote-icon--end {
  display: block;
  margin-left: auto;
  margin-bottom: 0;
}

.aj-quote-text {
  font-size: clamp(21px, 1.458vw, 28px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 32px;
}

.aj-quote--orange .aj-quote-text {
  color: #121212;
}

.aj-quote--dark .aj-quote-text {
  color: #fff;
}

.aj-quote-text .aj-accent {
  color: #F29D20;
}

/* -------------------- PROCESS STEPS -------------------- */
.aj-section-process {
  padding: 100px 64px;
}

.aj-process-heading {
  font-weight: 900;
  font-size: clamp(27px, 1.875vw, 36px);
  margin: 0 0 64px;
  text-align: center;
}

.aj-process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.aj-process-num {
  font-weight: 900;
  font-size: clamp(90px, 6.25vw, 120px);
  color: #F29D20;
  line-height: 0.75;
  min-width: 110px;
}

.aj-process-step-title {
  font-weight: 700;
  font-size: clamp(15px, 1.042vw, 20px);
  margin: 0 0 10px;
  color: #121212;
}

.aj-process-step-text {
  font-size: clamp(14px, 0.781vw, 15px);
  line-height: 1.4;
  color: #444;
  margin: 0;
}

/* -------------------- INTRO / CAPACITY / LIST-QUOTE section wrappers -------------------- */
.aj-section-intro {
  padding: 100px 64px;
}

.aj-section-capacity {
  padding: 100px 64px;
}

.aj-section-list-quote {
  padding: 0 64px 120px;
}

.aj-bg-white {
  background: #fff;
}

.aj-bg-light {
  background: #F0F0F0;
}

.aj-bg-dark {
  background: #121212;
}

.aj-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aj-checklist--tight {
  gap: 8px;
}

.aj-checklist-item {
  font-size: clamp(12px, 0.833vw, 16px);
  color: #333;
  margin: 0;
  display: flex;
  gap: 8px;
}

.aj-checklist--onDark .aj-checklist-item {
  font-size: clamp(11px, 0.781vw, 15px);
  color: #E4E4E4;
}

.aj-checklist--onDark .aj-checklist-item span {
  color: #fff;
}

.aj-checklist--bold .aj-checklist-item {
  font-weight: 700;
}

/* -------------------- FAQ dark variant (inner pages) -------------------- */
.aj-faq--dark {
  background: #121212;
}

.aj-faq--dark .aj-faq-heading .aj-h2 {
  color: #fff;
}

.aj-faq--dark .aj-faq-item {
  background: #2A2A2A;
}

.aj-faq--dark .aj-faq-question-text {
  color: #fff;
}

.aj-faq--dark .aj-faq-num {
  color: #777;
}

.aj-faq--dark .aj-faq-icon {
  color: #fff;
}

.aj-faq--dark .aj-faq-answer-text {
  color: #B8B8B8;
  white-space: pre-line;
}

/* -------------------- REFERENCES light variant (inner pages) -------------------- */
.aj-references--light {
  background: #fff;
}

.aj-references--light .aj-references-heading {
  color: #121212;
}

.aj-references--light .aj-ref-video {
  background: #EDEDED;
}

.aj-references--light .aj-ref-place {
  color: #121212;
}

.aj-references--light .aj-ref-title {
  color: #121212;
}

.aj-references--light .aj-ref-text {
  color: #444;
}

.aj-references--light .aj-ref-prev {
  background: #E5E5E5;
  color: #666;
}

.aj-references--light .aj-dot {
  background: #DADADA;
}

.aj-references--light .aj-dot.is-active {
  background: #121212;
}

/* -------------------- MACHINE PARK (tabs) -------------------- */
.aj-section-machinepark {
  padding: 100px 64px;
}

.aj-machine-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.aj-machine-tab {
  border: none;
  cursor: pointer;
  font-size: clamp(10px, 0.729vw, 14px);
  font-weight: 700;
  padding: 12px 22px;
  background: transparent;
  color: #666;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.aj-machine-tab.is-active {
  background: #F29D20;
  color: #121212;
}

.aj-machine-tab-divider {
  width: 1px;
  height: 18px;
  background: #D8D8D8;
  display: inline-block;
}

.aj-machine-panel {
  display: none;
}

.aj-machine-panel.is-active {
  display: grid;
}

.aj-machinepark-card {
  text-align: center;
}

.aj-machinepark-card img,
.aj-machinepark-placeholder {
  width: 100%;
  aspect-ratio: 16 / 13;
  object-fit: cover;
  margin: 0 0 16px;
  display: block;
}

.aj-machinepark-placeholder {
  background: #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aj-machinepark-brand {
  font-size: clamp(9px, 0.625vw, 12px);
  color: #999;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.aj-machinepark-name {
  font-weight: 700;
  font-size: clamp(14px, 0.938vw, 18px);
  margin: 0;
  color: #121212;
}

/* -------------------- CONTACT PERSONS (Kontakt) -------------------- */
.aj-section-contacts {
  padding: 100px 64px;
}

.aj-contacts-heading {
  font-weight: 900;
  margin: 0 0 100px;
  text-align: center;
}

.aj-contact-card {
  text-align: center;
}

.aj-contact-photo {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
  display: block;
  margin: 0 auto 20px;
  background: #E5E5E5;
}

.aj-contact-name {
  font-weight: 700;
  font-size: clamp(13px, 0.885vw, 17px);
  margin: 0 0 4px;
  color: #121212;
}

.aj-contact-role {
  font-size: clamp(10px, 0.729vw, 14px);
  color: #666;
  margin: 0 0 8px;
}

.aj-contact-link {
  display: block;
  font-size: clamp(10px, 0.729vw, 14px);
  color: #F29D20;
  margin-bottom: 2px;
}

/* -------------------- OM OSS (Kontakt) -------------------- */
.aj-section-omoss {
  padding: 100px 64px;
}

.aj-omoss-img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 85%);
}

/* -------------------- CONTACT FORM -------------------- */
.aj-section-contactform {
  padding: 100px 64px;
}

.aj-section-contactform .aj-h2 {
  color: #fff;
  font-size: clamp(22px, 1.562vw, 30px);
  margin: 0 0 28px;
}

.aj-contactinfo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.aj-contactinfo-row--address {
  align-items: flex-start;
  margin-bottom: 32px;
}

.aj-contactinfo-row--address svg {
  margin-top: 2px;
  flex-shrink: 0;
}

.aj-contactinfo-row a,
.aj-contactinfo-row span:not(.aj-icon-accent) {
  color: #CFCFCF;
  font-size: clamp(14px, 0.781vw, 15px);
}

.aj-contactinfo-logo {
  height: 32px;
  width: auto;
  display: block;
}

.aj-form .form-field {
  margin-bottom: 18px;
}

.aj-form label {
  display: block;
  color: #CFCFCF;
  font-size: clamp(12px, 0.677vw, 13px);
  margin-bottom: 6px;
}

.aj-form label .required {
  color: #F29D20;
}

.aj-form input[type="text"],
.aj-form input[type="email"],
.aj-form input[type="tel"],
.aj-form textarea,
.aj-form select {
  width: 100%;
  background: #1E1E1E;
  border: 1px solid #333;
  color: #fff;
  font-size: clamp(13px, 0.729vw, 14px);
  padding: 14px 16px;
  box-sizing: border-box;
  font-family: inherit;
}

.aj-form textarea {
  resize: vertical;
}

.aj-form .form-columns,
.aj-form .form-column-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.aj-form .buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.aj-form button.button,
.aj-form input[type="submit"] {
  background: #F29D20;
  color: #121212;
  border: none;
  font-size: clamp(13px, 0.781vw, 15px);
  font-weight: 700;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
}

.aj-form button.button:hover {
  background: #F5B55C;
}

.aj-form-disclaimer {
  font-size: clamp(12px, 0.625vw, 12px);
  color: #888;
  margin: 0;
  max-width: 320px;
  line-height: 1.4;
}

/* -------------------- ARTICLE (inner pages) -------------------- */
.aj-article-section {
  padding: 88px 64px;
  min-height: 40vh;
}

.aj-article-title {
  font-weight: 900;
  font-size: clamp(30px, 2.083vw, 40px);
  color: #121212;
  margin: 0 0 24px;
}

.aj-article-content {
  font-size: clamp(14px, 0.833vw, 16px);
  line-height: 1.6;
  color: #333;
}

.aj-article-content h2 {
  font-size: clamp(20px, 1.354vw, 26px);
  font-weight: 700;
  color: #121212;
}

.aj-article-content a {
  color: #F29D20;
}

.aj-article-content p {
  margin: 0 0 20px;
}

.aj-article-content h2 {
  margin: 40px 0 16px;
}

.aj-article-content h3 {
  font-size: clamp(15px, 1.042vw, 20px);
  font-weight: 700;
  color: #121212;
  margin: 32px 0 12px;
}

.aj-article-content ul,
.aj-article-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.aj-article-content li {
  margin-bottom: 8px;
}

.aj-article-content strong {
  font-weight: 700;
  color: #121212;
}

.aj-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: clamp(13px, 0.781vw, 15px);
}

.aj-article-content th,
.aj-article-content td {
  border: 1px solid #E5E5E5;
  padding: 10px 14px;
  text-align: left;
}

.aj-article-content th {
  background: #F0F0F0;
  font-weight: 700;
  color: #121212;
}

/* -------------------- ARTICLE HEADER / COVER / CTA -------------------- */
.aj-article-hero {
  padding: 64px 64px 0;
}

.aj-article-back {
  color: #F29D20;
  font-weight: 700;
  font-size: clamp(10px, 0.729vw, 14px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.aj-article-meta {
  color: #999;
  font-size: clamp(10px, 0.677vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
}

.aj-article-cover-wrap {
  padding: 32px 64px 0;
}

.aj-article-cover {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%);
}

.aj-article-cta {
  padding: 88px 64px;
  text-align: center;
}

.aj-article-cta-heading {
  color: #fff;
  font-weight: 900;
  font-size: clamp(22px, 1.562vw, 30px);
  margin: 0 0 24px;
}

/* -------------------- ARTICLE LISTING -------------------- */
.aj-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.aj-article-card {
  display: block;
  background: #fff;
  border: 1px solid #E5E5E5;
}

.aj-article-card-img,
.aj-article-card-img--placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.aj-article-card-img--placeholder {
  background: #F0F0F0;
}

.aj-article-card-body {
  padding: 24px;
}

.aj-article-card-date {
  color: #999;
  font-size: clamp(9px, 0.625vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
}

.aj-article-card-title {
  font-weight: 700;
  font-size: clamp(14px, 0.938vw, 18px);
  color: #121212;
  margin: 0 0 12px;
}

.aj-article-card-excerpt {
  font-size: clamp(10px, 0.729vw, 14px);
  color: #555;
  line-height: 1.4;
  margin: 0;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 900px) {
  .aj-container,
  .aj-container--narrow,
  .aj-container--faq {
    padding: 0;
  }

  .aj-header-inner {
    padding: 18px 24px;
    flex-wrap: wrap;
  }

  .aj-logo {
    width: 100%;
  }

  .aj-logo img {
    height: 36px;
  }

  .aj-header-right {
    flex: 1;
    align-items: flex-start;
  }

  .aj-topbar-info {
    display: flex !important;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
  }

  .aj-topbar-link svg {
    width: 12px;
    height: 12px;
  }

  .aj-lang-switch {
    gap: 10px;
  }

  .aj-nav-desktop {
    display: none !important;
  }

  .aj-mobile-nav-btn {
    display: flex !important;
  }

  .aj-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .aj-hero-left-content {
    padding: 40px 24px !important;
  }

  .aj-hero-right {
    display: none;
  }

  .aj-h1 {
    font-size: clamp(28px, 1.979vw, 38px) !important;
    margin: 40px 0 24px;
  }

  h1.aj-h1--inner {
    font-size: clamp(22px, 1.562vw, 30px) !important;
    margin: 0 0 20px !important;
  }

  .aj-two-col,
  .aj-machine-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .aj-intro,
  .aj-machines,
  .aj-faq,
  .aj-safety {
    padding: 64px 24px;
  }

  .aj-ref-slide {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .aj-safety-grid {
    grid-template-columns: 1fr !important;
  }

  .aj-safety-divider {
    border-left: none !important;
    border-top: 1px solid #D8D8D8 !important;
    padding-top: 32px !important;
    padding-left: 0 !important;
    margin-top: 32px !important;
  }

  .aj-safety-grid > .aj-safety-col:first-child {
    padding-right: 0 !important;
  }

  .aj-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .aj-footer-contact {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #4A4A4A;
    padding-top: 32px;
  }

  .aj-h2.aj-h2,
  h2.aj-h2 {
    font-size: clamp(21px, 1.458vw, 28px) !important;
  }

  .aj-machines-heading .aj-h2 {
    font-size: clamp(20px, 1.354vw, 26px) !important;
  }

  .aj-references {
    padding: 64px 24px;
  }

  .aj-footer {
    padding: 64px 0 0;
  }

  .aj-footer-grid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .aj-footer-bar {
    padding: 16px 24px;
  }

  .aj-article-section {
    padding: 48px 24px;
  }

  .aj-article-hero {
    padding: 40px 24px 0;
  }

  .aj-article-cover-wrap {
    padding: 24px 24px 0;
  }

  .aj-article-cta {
    padding: 48px 24px;
  }

  .aj-article-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .aj-hero--inner .aj-hero-left-content {
    padding-bottom: 32px !important;
  }

  .aj-intro-grid,
  .aj-capacity-grid,
  .aj-list-quote-grid,
  .aj-process-grid,
  .aj-machinepark-grid,
  .aj-omoss-grid,
  .aj-contactform-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .aj-contacts-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }

  .aj-process-num {
    font-size: clamp(48px, 3.333vw, 64px) !important;
    min-width: 70px !important;
  }

  .aj-quote,
  .aj-section-intro,
  .aj-section-capacity,
  .aj-section-process,
  .aj-section-machinepark,
  .aj-section-contacts,
  .aj-section-omoss,
  .aj-section-contactform {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .aj-section-list-quote {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .aj-form .form-columns,
  .aj-form .form-column-2 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .aj-contacts-heading {
    margin-bottom: 48px !important;
  }
}

@media (max-width: 480px) {
  .aj-contacts-grid {
    grid-template-columns: 1fr !important;
  }
}
