:root {
  --dark-900: #071B15;
  --dark-800: #102821;
  --accent-deep: #356E2C;
  --accent-soft: #C5E5A4;
  --primary: #5EA833;
  --primary-dark: #4C8F27;
  --orange: var(--primary);
  --orange-dark: var(--primary-dark);
  --gray-50: #F7F8F5;
  --gray-100: #E8EDE2;
  --gray-300: #D5DDCD;
  --text: #111D18;
  --muted: #5F6B62;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(7, 27, 21, 0.14);
  --radius: 8px;
  --container: 1440px;
}

body {
  color: var(--text);
  background: var(--white);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.55;
}

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

.section-kicker {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 800;
}

h3 {
  font-size: 20px;
  font-weight: 800;
}

p {
  color: inherit;
}

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

.section-heading--wide {
  max-width: 920px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: none;
}

.btn-primary {
  color: var(--dark-900);
  background: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  min-height: 72px;
  padding-inline: max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(214, 218, 208, 0.76);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(7, 27, 21, 0.08);
}

.brand-mark {
  display: flex;
  align-items: center;
  line-height: 1.12;
}

.brand-mark img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #26342E;
  font-size: 13.2px;
  font-weight: 800;
}

.site-nav a,
.site-nav button {
  position: relative;
  padding: 25px 0 24px;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.site-nav a::after,
.site-nav button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav button:hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-width: 172px;
  padding: 11px 18px;
  color: var(--dark-900);
  background: var(--orange);
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--dark-900);
}

.section-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 156px 0 94px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 22, 17, 0.98) 0%, rgba(6, 22, 17, 0.9) 38%, rgba(6, 22, 17, 0.26) 62%, rgba(6, 22, 17, 0.03) 100%),
    linear-gradient(180deg, rgba(3, 10, 8, 0.08), rgba(3, 10, 8, 0.12)),
    url("../img/factory-line.webp") center center / cover,
    var(--dark-900);
}

.section-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 18, 14, 0.92) 0%, rgba(5, 18, 14, 0.74) 36%, rgba(5, 18, 14, 0.08) 66%, rgba(5, 18, 14, 0) 100%),
    radial-gradient(circle at 77% 49%, rgba(255, 255, 255, 0.12), transparent 31%);
  content: "";
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: block;
}

.hero-copy {
  width: min(720px, 52vw);
}

.section-hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(42px, 4.1vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-kicker {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 690px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.data-note {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.section-proof-strip {
  padding: 30px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.proof-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--gray-300);
}

.proof-line div {
  min-height: 72px;
  padding: 10px 20px;
  color: #2A362F;
  border-right: 1px solid var(--gray-300);
  font-weight: 700;
}

.proof-line span {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-weight: 800;
}

.section-equipment-scenes {
  padding: 88px 0 96px;
  background: var(--gray-50);
}

.equipment-scenes-head {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.46fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.equipment-scenes-head p:not(.section-kicker) {
  color: var(--muted);
}

.equipment-scene-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
  grid-template-rows: 292px 292px;
  gap: 16px;
}

.equipment-scene {
  position: relative;
  min-height: 278px;
  overflow: hidden;
  background: #071B15;
}

.equipment-scene--primary {
  grid-column: 1;
  grid-row: span 2;
}

.equipment-scene:nth-child(4) {
  grid-column: 2 / -1;
}

.equipment-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.equipment-scene::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 21, 0.04), rgba(7, 27, 21, 0.82));
  content: "";
}

.equipment-scene:hover img {
  transform: scale(1.035);
}

.equipment-scene div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
  color: var(--white);
}

.equipment-scene span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.equipment-scene h3 {
  margin: 0;
  color: var(--white);
  font-size: 23px;
  line-height: 1.14;
}

.equipment-scene p {
  max-width: 520px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.equipment-scene:not(.equipment-scene--primary) h3 {
  font-size: 20px;
}

.equipment-scene:not(.equipment-scene--primary) p {
  font-size: 14px;
}

.section-product-categories {
  padding: 98px 0 104px;
  color: var(--white);
  background: #071B15;
  border-top: 1px solid rgba(94, 168, 51, 0.18);
  border-bottom: 1px solid rgba(94, 168, 51, 0.18);
}

.product-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.48fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 38px;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.product-head h2 {
  color: var(--white);
  font-size: 42px;
}

.product-head p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

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

.product-category-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background: #102821;
  border: 1px solid rgba(94, 168, 51, 0.24);
  border-radius: 4px;
  box-shadow: none;
  transition: border-color .2s ease, transform .2s ease;
}

.product-category-card:hover {
  border-color: rgba(94, 168, 51, 0.55);
  transform: translateY(-2px);
}

.product-category-card img {
  width: 100%;
  height: 310px;
  padding: 8px;
  object-fit: contain;
  background: #F6F8F2;
  border-bottom: 3px solid var(--primary);
}

.product-category-card div {
  display: grid;
  flex: 1;
  gap: 11px;
  padding: 23px 24px 24px;
}

.product-category-card span {
  display: inline-grid;
  width: 42px;
  height: 32px;
  place-items: center;
  color: #102018;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.product-category-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 23px;
  line-height: 1.2;
}

.product-category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
}

.product-category-card a,
.product-category-card button {
  align-self: end;
  margin-top: 8px;
  color: var(--primary);
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.section-industries-compact {
  padding: 68px 0;
  background: var(--gray-50);
}

.industry-compact-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-300);
}

.industry-compact-head h2 {
  max-width: 720px;
  font-size: 36px;
}

.industry-compact-head > p {
  max-width: 620px;
  color: var(--muted);
}

.industry-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--gray-300);
  border-left: 1px solid var(--gray-300);
  background: var(--white);
}

.industry-tile {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 132px;
  background: var(--white);
  border-right: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

.industry-tile figure {
  min-height: 132px;
  background: var(--gray-100);
  overflow: hidden;
}

.industry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-tile div {
  min-width: 0;
  padding: 14px 15px 12px;
}

.industry-tile span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.industry-tile h3 {
  margin: 0 0 8px;
  font-size: 16.5px;
  line-height: 1.18;
}

.industry-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.section-factory-map {
  padding: 94px 0 100px;
  color: var(--text);
  background: #F7F8F4;
  border-top: 1px solid #DFE8D8;
  border-bottom: 1px solid #DFE8D8;
}

.factory-map-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 1fr);
  gap: 34px 44px;
  align-items: start;
}

.map-copy {
  padding: 30px 32px;
  background: var(--white);
  border: 1px solid #D8E0D1;
  border-left: 6px solid var(--primary);
}

.map-copy p:not(.section-kicker) {
  color: var(--muted);
}

.factory-photo-stack {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(230px, 0.8fr);
  grid-auto-rows: 190px;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border: 1px solid #D8E0D1;
}

.factory-photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.factory-photo-stack img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.factory-data-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid #D8E0D1;
}

.factory-data-list p {
  display: grid;
  gap: 6px;
  padding: 24px 26px;
  background: var(--white);
  border-right: 1px solid #D8E0D1;
}

.factory-data-list p:nth-child(even) {
  background: #FBFCF8;
}

.factory-data-list p:last-child {
  border-right: 0;
}

.factory-data-list strong {
  color: #5EA833;
  font-size: 30px;
  line-height: 1;
}

.factory-data-list span {
  color: var(--muted);
}

.section-why-choose {
  padding: 92px 0;
  background: var(--white);
}

.why-choose-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-300);
}

.why-choose-head > p {
  max-width: 760px;
  color: var(--muted);
}

.why-choose-body {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
}

.why-choose-media {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--dark-900);
  border: 1px solid var(--gray-300);
  overflow: hidden;
}

.factory-carousel__viewport {
  position: relative;
  width: 100%;
  min-height: 0;
  height: auto;
  overflow: hidden;
  background: var(--dark-900);
}

.factory-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transform: scale(1.02);
  transition: opacity .35s ease, transform .45s ease;
}

.factory-carousel__slide:not(.is-active) {
  opacity: 0;
  pointer-events: none;
}

.factory-carousel__slide.is-active {
  transform: scale(1);
}

.factory-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(7, 27, 21, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.factory-carousel__button:hover,
.factory-carousel__button:focus-visible {
  background: var(--primary);
  color: var(--dark-900);
}

.factory-carousel__button--prev {
  left: 18px;
}

.factory-carousel__button--next {
  right: 18px;
}

.factory-carousel__dots {
  position: absolute;
  right: 18px;
  bottom: 76px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.factory-carousel__dots button {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
}

.factory-carousel__dots button.is-active {
  background: var(--primary);
}

.why-choose-media figcaption {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.why-reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-300);
  border-left: 1px solid var(--gray-300);
}

.why-reason-list article {
  min-height: 0;
  padding: 24px;
  background: var(--gray-50);
  border-right: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

.why-reason-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-weight: 900;
}

.why-reason-list h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.why-reason-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-solution-steps {
  padding: 94px 0;
  background: var(--gray-50);
}

.process-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 72px;
}

.process-steps {
  position: relative;
  list-style: none;
}

.process-steps::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 30px;
  width: 2px;
  background: var(--gray-300);
  content: "";
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(180px, 0.8fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 28px;
}

.process-steps span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: var(--dark-900);
  border: 5px solid var(--gray-50);
  font-weight: 800;
}

.process-steps p {
  color: var(--muted);
}

.process-steps b {
  color: var(--text);
}

.section-cert-strip {
  padding: 68px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}

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

.cert-strip-head h2 {
  font-size: 32px;
}

.cert-strip-head > p {
  max-width: 360px;
  color: var(--muted);
  text-align: right;
}

.cert-carousel {
  position: relative;
}

.cert-carousel__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cert-carousel__track::-webkit-scrollbar {
  display: none;
}

.cert-carousel figure {
  flex: 0 0 196px;
  scroll-snap-align: start;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--gray-300);
}

.cert-carousel img {
  width: 100%;
  height: 248px;
  object-fit: contain;
  object-position: top;
  background: var(--white);
}

.cert-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(7, 27, 21, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.cert-carousel__button:hover,
.cert-carousel__button:focus-visible {
  color: var(--dark-900);
  background: var(--primary);
}

.cert-carousel__button--prev {
  left: -18px;
}

.cert-carousel__button--next {
  right: -18px;
}

.section-rfq-split {
  padding: 94px 0;
  background: var(--white);
}

.rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(340px, 390px);
  justify-content: center;
  gap: 0;
  align-items: stretch;
}

.rfq-form {
  padding: 36px;
  background: var(--gray-50);
  border: 1px solid var(--gray-300);
  border-right: 0;
}

.form-help {
  margin-bottom: 24px;
  color: var(--muted);
}

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

.rfq-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: #26342E;
  font-size: 14px;
  font-weight: 800;
}

.rfq-form input,
.rfq-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
}
.rfq-form textarea{
    width: 100%;
    height:118px;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  resize: vertical;
}

.rfq-form .is-invalid {
  border-color: #D92D20;
}

.form-submit {
  width: min(100%, 360px);
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: #047857;
  font-weight: 800;
}

.form-status.is-error {
  color: #B42318;
}

.rfq-form--modal {
  padding: 30px 32px 32px;
  background: var(--white);
}

.floating-rfq {
  position: fixed;
  right: 18px;
  top: 46%;
  z-index: 180;
}

.floating-rfq__mail {
  display: grid;
  gap: 7px;
  place-items: center;
  width: 72px;
  min-height: 82px;
  padding: 12px 9px;
  color: var(--dark-900);
  background: var(--orange);
  border: 1px solid rgba(7, 27, 21, 0.18);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(7, 27, 21, 0.18);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.floating-rfq__mail svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rfq-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.rfq-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.rfq-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 21, 0.68);
}

.rfq-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  background: var(--white);
  border: 1px solid rgba(94, 168, 51, 0.38);
  box-shadow: 0 28px 80px rgba(7, 27, 21, 0.34);
}

.rfq-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--dark-900);
  border: 0;
  border-radius: 4px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.is-modal-open {
  overflow: hidden;
}

.rfq-info-panel {
  position: relative;
  top: auto;
  display: flex;
  flex-direction: column;
  padding: 0 30px 30px;
  color: var(--white);
  background: var(--dark-900);
  overflow: hidden;
}

.rfq-info-panel h3 {
  margin: 24px 0 18px;
}

.rfq-panel-image {
  width: calc(100% + 60px);
  max-width: none;
  height: 214px;
  margin: 0 -30px;
  object-fit: cover;
}

.rfq-info-panel ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.rfq-info-panel li {
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.76);
}

.rfq-info-panel li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "•";
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-stack a {
  color: var(--white);
  font-weight: 800;
}

.section-faq-split {
  padding: 94px 0;
  background: var(--gray-50);
}

.faq-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 62px;
}

.faq-intro p:not(.section-kicker) {
  color: var(--muted);
}

.faq-list {
  background: var(--white);
  border: 1px solid var(--gray-300);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--gray-300);
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 20px 54px 20px 22px;
  color: var(--text);
  text-align: left;
  background: var(--white);
  border: 0;
  font-weight: 800;
}

.faq-item button::after {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--orange);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
}

.section-final-cta {
  padding: 84px 0;
  background: var(--dark-900);
}

.final-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  color: var(--white);
}

.final-cta-panel p:not(.section-kicker) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
}

.final-cta-logo {
  width: 190px;
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #071B15;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.7fr;
  gap: 36px;
  padding: 42px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-layout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-layout span,
.footer-layout a {
  display: block;
  margin-bottom: 7px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  font-size: 13px;
}
