﻿/*
Theme Name: US Machines New
Theme URI: #
Author: AD ECLECTIC
Author URI: https://adeclectic.com/
Description: US Heavy Machines - Construction Equipment Marketplace Theme
Requires at least: WordPress 6.0
Tested up to: WordPress 6.7
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: portfolio, custom-header, custom-menu, custom-colors, custom-logo, featured-images
*/

/* === BASE / RESET === */
* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html,
body {
  padding: 0;
  margin: 0;
  font-size: 100%;
  color: #fff;
  background-color: #000;
  /*background-image: url(img/bg-main.webp);*/
  background-size: 100% auto;
  background-repeat: repeat-y;
  scroll-behavior: smooth;
  font-family: "Barlow", sans-serif;
}

@media screen and (max-width: 1200px) {

  /*resize body rem */
  html,
  body {
    font-size: 100%;
  }
}


@media screen and (max-width: 960px) {

  /*resize body rem */
  html,
  body {
    font-size: 90%;
  }
}


@media screen and (max-width: 768px) {

  /*resize body rem */
  html,
  body {
    font-size: 84%;
  }
}

@media screen and (max-width: 480px) {

  /*resize body rem */
  html,
  body {
    font-size: 90%;
  }
}


/* Style reset */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
select {
  text-transform: none;
}

textarea {
  overflow: auto;
}

/* === HELPERS === */
/* Font Helpers */

.f200 {
  font-weight: 200 !important;
}

.f300 {
  font-weight: 300 !important;
}

.f400 {
  font-weight: 400 !important;
}

.f500 {
  font-weight: 500 !important;
}

.f600 {
  font-weight: 600 !important;
}

.f700 {
  font-weight: 700 !important;
}

.f800 {
  font-weight: 800 !important;
}

.f900 {
  font-weight: 900 !important;
}


/* Text Align */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media screen and (max-width: 1200px) {

  .text-center-lg {
    text-align: center;
  }

  .text-left-lg {
    text-align: left;
  }

  .text-right-lg {
    text-align: right;
  }

}

@media screen and (max-width: 960px) {

  .text-center-md {
    text-align: center;
  }

  .text-left-md {
    text-align: left;
  }

  .text-right-md {
    text-align: right;
  }

}

@media screen and (max-width: 768px) {

  .text-center-sm {
    text-align: center;
  }

  .text-left-sm {
    text-align: left;
  }

  .text-right-sm {
    text-align: right;
  }

}

@media screen and (max-width: 480px) {

  .text-center-xs {
    text-align: center;
  }

  .text-left-xs {
    text-align: left;
  }

  .text-right-xs {
    text-align: right;
  }

}


/* Margin helpers */
.nomargin {
  margin: 0 !important;
}

.marbxxxl {
  margin-bottom: 16rem !important;
}

.marbxxl {
  margin-bottom: 11rem !important;
}

.marbxl {
  margin-bottom: 8rem !important;
}

.marbl {
  margin-bottom: 5.5rem !important;
}

.marbm {
  margin-bottom: 3.5rem !important;
}

.marbs {
  margin-bottom: 2rem !important;
}

.marbxs {
  margin-bottom: 1rem !important;
}

.marbxxs {
  margin-bottom: 0.5rem !important;
}

.marbnone {
  margin-bottom: 0 !important;
}

.martxxxl {
  margin-top: 16rem !important;
}

.martxxl {
  margin-top: 11rem !important;
}

.martxl {
  margin-top: 8rem !important;
}

.martl {
  margin-top: 5.5rem !important;
}

.martm {
  margin-top: 3.5rem !important;
}

.marts {
  margin-top: 2rem !important;
}

.martxs {
  margin-top: 1rem !important;
}

.martxxs {
  margin-top: 0.5rem !important;
}

.martnone {
  margin-top: 0 !important;
}


/* Padding helpers */
.nopad {
  padding: 0 !important;
}

.padtxxs {
  padding-top: 0.5rem !important;
}

.padtxs {
  padding-top: 1rem !important;
}

.padts {
  padding-top: 2rem !important;
}

.padtm {
  padding-top: 3.5rem !important;
}

.padtl {
  padding-top: 5.5rem !important;
}

.padtxl {
  padding-top: 8rem !important;
}

.padtxxl {
  padding-top: 11rem !important;
}

.padbxxs {
  padding-bottom: 0.5rem !important;
}

.padbxs {
  padding-bottom: 1rem !important;
}

.padbs {
  padding-bottom: 2rem !important;
}

.padbm {
  padding-bottom: 3.5rem !important;
}

.padbl {
  padding-bottom: 5.5rem !important;
}

.padbxl {
  padding-bottom: 8rem !important;
}

.padbxxl {
  padding-bottom: 11rem !important;
}


/* GRID */
.grid-center {
  justify-items: center !important;
}

.grid-left {
  justify-items: start !important;
}

.grid-right {
  justify-items: end !important;
}

.grid-v-center {
  align-items: center !important;
}

.grid-v-bottom {
  align-items: end !important;
}


/* Grid container */
.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2rem;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 2rem;
}

.grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 2rem;
}

.grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 2rem;
}

.grid-9 {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-gap: 2rem;
}

.grid-10 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 2rem;
}

.grid-11 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-gap: 2rem;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 2rem;
}

.grid-13 {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-gap: 2rem;
}

.grid-14 {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  grid-gap: 2rem;
}

.grid-15 {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-gap: 2rem;
}

.grid-16 {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-gap: 2rem;
}




/* Grid child align */

/* Grid child span */
.span-1 {
  grid-column: span 1;
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

.span-9 {
  grid-column: span 9;
}

.span-10 {
  grid-column: span 10;
}

.span-11 {
  grid-column: span 11;
}

.span-12 {
  grid-column: span 12;
}

.span-13 {
  grid-column: span 13;
}

.span-14 {
  grid-column: span 14;
}

.span-15 {
  grid-column: span 15;
}


.gap-0 {
  grid-gap: 0 !important;
}

.gap-1 {
  grid-gap: 1rem !important;
}

.gap-2 {
  grid-gap: 2rem !important;
}

.gap-3 {
  grid-gap: 3rem !important;
}

.gap-4 {
  grid-gap: 4rem !important;
}

.gap-5 {
  grid-gap: 5rem !important;
}

.gap-6 {
  grid-gap: 6rem !important;
}

.gap-7 {
  grid-gap: 7rem !important;
}

.gap-8 {
  grid-gap: 8rem !important;
}

.gap-9 {
  grid-gap: 9rem !important;
}

.gap-10 {
  grid-gap: 10rem !important;
}


@media screen and (max-width: 1200px) {
  .grid-1-lg {
    grid-template-columns: 1fr;
  }

  .grid-2-lg {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3-lg {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4-lg {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-5-lg {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-6-lg {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid-7-lg {
    grid-template-columns: repeat(7, 1fr);
  }

  .grid-8-lg {
    grid-template-columns: repeat(8, 1fr);
  }

  .grid-9-lg {
    grid-template-columns: repeat(9, 1fr);
  }

  .grid-10-lg {
    grid-template-columns: repeat(10, 1fr);
  }

  .grid-11-lg {
    grid-template-columns: repeat(11, 1fr);
  }

  .grid-12-lg {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid-13-lg {
    grid-template-columns: repeat(13, 1fr);
  }

  .grid-14-lg {
    grid-template-columns: repeat(14, 1fr);
  }

  .grid-15-lg {
    grid-template-columns: repeat(15, 1fr);
  }

  .grid-16-lg {
    grid-template-columns: repeat(16, 1fr);
  }

  .span-1-lg {
    grid-column: span 1;
  }

  .span-2-lg {
    grid-column: span 2;
  }

  .span-3-lg {
    grid-column: span 3;
  }

  .span-4-lg {
    grid-column: span 4;
  }

  .span-5-lg {
    grid-column: span 5;
  }

  .span-6-lg {
    grid-column: span 6;
  }

  .span-7-lg {
    grid-column: span 7;
  }

  .span-8-lg {
    grid-column: span 8;
  }

  .span-9-lg {
    grid-column: span 9;
  }

  .span-10-lg {
    grid-column: span 10;
  }

  .span-11-lg {
    grid-column: span 11;
  }

  .span-12-lg {
    grid-column: span 12;
  }

  .span-13-lg {
    grid-column: span 13;
  }

  .span-14-lg {
    grid-column: span 14;
  }

  .span-15-lg {
    grid-column: span 15;
  }


  .gap-0-lg {
    grid-gap: 0 !important;
  }

  .gap-1-lg {
    grid-gap: 1rem !important;
  }

  .gap-2-lg {
    grid-gap: 2rem !important;
  }

  .gap-3-lg {
    grid-gap: 3rem !important;
  }

  .gap-4-lg {
    grid-gap: 4rem !important;
  }

  .gap-5-lg {
    grid-gap: 5rem !important;
  }

  .gap-6-lg {
    grid-gap: 6rem !important;
  }

  .gap-7-lg {
    grid-gap: 7rem !important;
  }

  .gap-8-lg {
    grid-gap: 8rem !important;
  }
}

@media screen and (max-width: 960px) {
  .grid-1-md {
    grid-template-columns: 1fr;
  }

  .grid-2-md {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3-md {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4-md {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-5-md {
    grid-template-columns: repeat(5 1fr);
  }

  .grid-6-md {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid-7-md {
    grid-template-columns: repeat(7, 1fr);
  }

  .grid-8-md {
    grid-template-columns: repeat(8, 1fr);
  }

  .grid-9-md {
    grid-template-columns: repeat(9, 1fr);
  }

  .grid-10-md {
    grid-template-columns: repeat(10, 1fr);
  }

  .grid-11-md {
    grid-template-columns: repeat(11, 1fr);
  }

  .grid-12-md {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid-13-md {
    grid-template-columns: repeat(13, 1fr);
  }

  .grid-14-md {
    grid-template-columns: repeat(14, 1fr);
  }

  .grid-15-md {
    grid-template-columns: repeat(15, 1fr);
  }

  .grid-16-md {
    grid-template-columns: repeat(16, 1fr);
  }

  .span-1-md {
    grid-column: span 1;
  }

  .span-2-md {
    grid-column: span 2;
  }

  .span-3-md {
    grid-column: span 3;
  }

  .span-4-md {
    grid-column: span 4;
  }

  .span-5-md {
    grid-column: span 5;
  }

  .span-6-md {
    grid-column: span 6;
  }

  .span-7-md {
    grid-column: span 7;
  }

  .span-8-md {
    grid-column: span 8;
  }

  .span-9-md {
    grid-column: span 9;
  }

  .span-10-md {
    grid-column: span 10;
  }

  .span-11-md {
    grid-column: span 11;
  }

  .span-12-md {
    grid-column: span 12;
  }

  .span-13-md {
    grid-column: span 13;
  }

  .span-14-md {
    grid-column: span 14;
  }

  .span-15-md {
    grid-column: span 15;
  }

  .gap-0-md {
    grid-gap: 0 !important;
  }

  .gap-1-md {
    grid-gap: 1rem !important;
  }

  .gap-2-md {
    grid-gap: 2rem !important;
  }

  .gap-3-md {
    grid-gap: 3rem !important;
  }

  .gap-4-md {
    grid-gap: 4rem !important;
  }

  .gap-5-md {
    grid-gap: 5rem !important;
  }

  .gap-6-md {
    grid-gap: 6rem !important;
  }

  .gap-7-md {
    grid-gap: 7rem !important;
  }

  .gap-8-md {
    grid-gap: 8rem !important;
  }
}

@media screen and (max-width: 768px) {
  .grid-1-sm {
    grid-template-columns: 1fr;
  }

  .grid-2-sm {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3-sm {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4-sm {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-5-sm {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-6-sm {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid-7-sm {
    grid-template-columns: repeat(7, 1fr);
  }

  .grid-8-sm {
    grid-template-columns: repeat(8, 1fr);
  }

  .grid-9-sm {
    grid-template-columns: repeat(9, 1fr);
  }

  .grid-10-sm {
    grid-template-columns: repeat(10, 1fr);
  }

  .grid-11-sm {
    grid-template-columns: repeat(11, 1fr);
  }

  .grid-12-sm {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid-13-sm {
    grid-template-columns: repeat(13, 1fr);
  }

  .grid-14-sm {
    grid-template-columns: repeat(14, 1fr);
  }

  .grid-15-sm {
    grid-template-columns: repeat(15, 1fr);
  }

  .grid-16-sm {
    grid-template-columns: repeat(16, 1fr);
  }

  .span-1-sm {
    grid-column: span 1;
  }

  .span-2-sm {
    grid-column: span 2;
  }

  .span-3-sm {
    grid-column: span 3;
  }

  .span-4-sm {
    grid-column: span 4;
  }

  .span-5-sm {
    grid-column: span 5;
  }

  .span-6-sm {
    grid-column: span 6;
  }

  .span-7-sm {
    grid-column: span 7;
  }

  .span-8-sm {
    grid-column: span 8;
  }

  .span-9-sm {
    grid-column: span 9;
  }

  .span-10-sm {
    grid-column: span 10;
  }

  .span-11-sm {
    grid-column: span 11;
  }

  .span-12-sm {
    grid-column: span 12;
  }

  .span-13-sm {
    grid-column: span 13;
  }

  .span-14-sm {
    grid-column: span 14;
  }

  .span-15-sm {
    grid-column: span 15;
  }

  .gap-0-sm {
    grid-gap: 0 !important;
  }

  .gap-1-sm {
    grid-gap: 1rem !important;
  }

  .gap-2-sm {
    grid-gap: 2rem !important;
  }

  .gap-3-sm {
    grid-gap: 3rem !important;
  }

  .gap-4-sm {
    grid-gap: 4rem !important;
  }

  .gap-5-sm {
    grid-gap: 5rem !important;
  }

  .gap-6-sm {
    grid-gap: 6rem !important;
  }

  .gap-7-sm {
    grid-gap: 7rem !important;
  }

  .gap-8-sm {
    grid-gap: 8rem !important;
  }
}

@media screen and (max-width: 480px) {
  .grid-1-xs {
    grid-template-columns: 1fr;
  }

  .grid-2-xs {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3-xs {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4-xs {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-5-xs {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-6-xs {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid-7-xs {
    grid-template-columns: repeat(7, 1fr);
  }

  .grid-8-xs {
    grid-template-columns: repeat(8, 1fr);
  }

  .grid-9-xs {
    grid-template-columns: repeat(9, 1fr);
  }

  .grid-10-xs {
    grid-template-columns: repeat(10, 1fr);
  }

  .grid-11-xs {
    grid-template-columns: repeat(11, 1fr);
  }

  .grid-12-xs {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid-13-xs {
    grid-template-columns: repeat(13, 1fr);
  }

  .grid-14-xs {
    grid-template-columns: repeat(14, 1fr);
  }

  .grid-15-xs {
    grid-template-columns: repeat(15, 1fr);
  }

  .grid-16-xs {
    grid-template-columns: repeat(16, 1fr);
  }

  .span-1-xs {
    grid-column: span 1;
  }

  .span-2-xs {
    grid-column: span 2;
  }

  .span-3-xs {
    grid-column: span 3;
  }

  .span-4-xs {
    grid-column: span 4;
  }

  .span-5-xs {
    grid-column: span 5;
  }

  .span-6-xs {
    grid-column: span 6;
  }

  .span-7-xs {
    grid-column: span 7;
  }

  .span-8-xs {
    grid-column: span 8;
  }

  .span-9-xs {
    grid-column: span 9;
  }

  .span-10-xs {
    grid-column: span 10;
  }

  .span-11-xs {
    grid-column: span 11;
  }

  .span-12-xs {
    grid-column: span 12;
  }

  .span-13-xs {
    grid-column: span 13;
  }

  .span-14-xs {
    grid-column: span 14;
  }

  .span-15-xs {
    grid-column: span 15;
  }

  .gap-0-xs {
    grid-gap: 0 !important;
  }

  .gap-1-xs {
    grid-gap: 1rem !important;
  }

  .gap-2-xs {
    grid-gap: 2rem !important;
  }

  .gap-3-xs {
    grid-gap: 3rem !important;
  }

  .gap-4-xs {
    grid-gap: 4rem !important;
  }

  .gap-5-xs {
    grid-gap: 5rem !important;
  }

  .gap-6-xs {
    grid-gap: 6rem !important;
  }

  .gap-7-xs {
    grid-gap: 7rem !important;
  }

  .gap-8-xs {
    grid-gap: 8rem !important;
  }
}


.hidden {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block !important;
}


@media screen and (max-width: 1200px) {

  .hidden-lg {
    display: none !important;
  }

  .block-lg {
    display: block !important;
  }

  .inline-lg {
    display: inline !important;
  }

  .inline-block-lg {
    display: inline-block !important;
  }

}

@media screen and (max-width: 960px) {

  .hidden-md {
    display: none !important;
  }

  .block-md {
    display: block !important;
  }

  .inline-md {
    display: inline !important;
  }

  .inline-block-md {
    display: inline-block !important;
  }

}

@media screen and (max-width: 768px) {

  .hidden-sm {
    display: none !important;
  }

  .block-sm {
    display: block !important;
  }

  .inline-sm {
    display: inline !important;
  }

  .inline-block-sm {
    display: inline-block !important;
  }

}

@media screen and (max-width: 480px) {

  .hidden-xs {
    display: none !important;
  }

  .block-xs {
    display: block !important;
  }

  .inline-xs {
    display: inline !important;
  }

  .inline-block-xs {
    display: inline-block !important;
  }

}

/* Postions */
.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

/* Images */
.background-cover {
  background-size: cover !important;
  background-position: center !important;
}

.responsive {
  max-width: 100%;
  height: auto;
}

.responsive-full {
  width: 100%;
  height: auto;
}

.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.circle {
  border-radius: 50%;
}


/* SHOW HAND ON HOVER */
.show-hand:hover {
  cursor: pointer !important;
}

/* === ELEMENTS === */
/* COLORS */
:root {
  --prim-color: #ffffff;
  --prim-light-color: #d6cdc7;
  --prim-dark-color: #aea097;
  --sec-color: #EC7322;
  --sec-light-color: #f69d63;
  --sec-dark-color: #cd5200;
  --highlight-color: #FF6400;
  --highlight-light-color: #FF36C6;
  --highlight-dark-color: #CA0771;
  --overlay-color: rgba(10, 10, 10, 0.8);
  --overlay-light-color: rgba(46, 46, 46, 0.5);
}


/* FONT SIZES */
h1 {
  font-size: 3.75rem;
  line-height: 4rem;
  font-weight: 400;
  font-family: "Staatliches", sans-serif;
  text-transform: uppercase;
}

h1 span {
  color: var(--sec-color);
}

h1.shadow {
  text-shadow: #000 0.3rem 0.3rem 0.5rem !important;
}

h2 {
  font-size: 3rem;
  font-weight: 400;
  font-family: "Staatliches", sans-serif;
  text-transform: uppercase;
}

h2 span {
  color: var(--sec-color);
}

h3 {
  font-size: 2.5rem;
  font-weight: 400;
  font-family: "Staatliches", sans-serif;
  text-transform: uppercase;
}

h3 span {
  color: var(--sec-color);
}

h4 {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Staatliches", sans-serif;
  text-transform: uppercase;
}

h4 span {
  color: var(--sec-color);
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.25rem;
}

p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

p.small {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

ul li {
  font-size: 1.0625rem;
}


@media screen and (max-width: 480px) {

  h1 {
    font-size: 3.3rem;
  }

}



/* LINKS */
a {
  text-decoration: none;
  transition: 0.6s all;
  color: var(--sec-color);
}

a:hover {
  transition: 0.6s all;
  color: var(--sec-light-color);
}




/* COLORS */
.cwhi {
  color: #fff !important;
}

.bgwhi {
  background-color: #fff !important;
}

.hwhi:hover {
  color: #fff !important;
}

.cbla {
  color: #000 !important;
}

.bgbla {
  background-color: #000 !important;
}

.hbla:hover {
  color: #000 !important;
}

.cgrey {
  color: var(--grey) !important;
}

.bggrey {
  background-color: var(--grey) !important;
}

.hgrey:hover {
  color: var(--grey) !important;
}

.cltgrey {
  color: #e8e8e8 !important;
}

.bgltgrey {
  background-color: #e8e8e8 !important;
}

.hltgrey:hover {
  color: #e8e8e8 !important;
}

.cdgrey {
  color: #302f2b !important;
}

.bgdgrey {
  background-color: #302f2b !important;
}

.hdgrey:hover {
  color: #302f2b !important;
}

.cora {
  color: var(--sec-color) !important;
}

.bgora {
  background-color: var(--sec-color) !important;
}

.hora:hover {
  color: var(--sec-color) !important;
}

.cdora {
  color: var(--sec-dark-color) !important;
}

.bgdora {
  background-color: var(--sec-dark-color) !important;
}

.hdora:hover {
  color: var(--sec-dark-color) !important;
}

.cblu {
  color: var(--prim-color) !important;
}

.bgblu {
  background-color: var(--prim-color) !important;
}

.hblu:hover {
  color: var(--prim-color) !important;
}

.cdblu {
  color: var(--prim-dark-color) !important;
}

.bgdblu {
  background-color: var(--prim-dark-color) !important;
}

.hdblu:hover {
  color: var(--prim-dark-color) !important;
}

.cltblu {
  color: var(--prim-light-color) !important;
}

.bgltblu {
  background-color: var(--prim-light-color) !important;
}

.hltblu:hover {
  color: var(--prim-light-color) !important;
}

.chigh {
  color: var(--highlight-color) !important;
}

.bgchigh {
  background-color: var(--highlight-color) !important;
}

.hchigh:hover {
  color: var(--highlight-color) !important;
}

.cdhigh {
  color: var(--highlight-dark-color) !important;
}

.bgdhigh {
  background-color: var(--highlight-dark-color) !important;
}

.hdhigh:hover {
  color: var(--highlight-dark-color) !important;
}

.clthigh {
  color: var(--highlight-light-color) !important;
}

.bglthigh {
  background-color: var(--highlight-light-color) !important;
}

.hlthigh:hover {
  color: var(--highlight-light-color) !important;
}

.bgover {
  background-color: var(--overlay-color) !important;
}

.bgltover {
  background-color: var(--overlay-light-color) !important;
}


/* Buttons */

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-side-grey {
  background-color: #F1F1F1;
  font-size: 0.8rem;
  color: #000;
  font-weight: 600;
  padding: 1rem 1.7rem;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.2rem;
  transition: all 0.8s;
}

.btn-side-grey:hover {
  background-color: #313131;
  color: #fff;
  transition: all 0.8s;
}

@media screen and (max-width: 768px) {
  .btn-side-grey {
    width: auto;
  }
}

.btn-icon {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02rem;
  width: 100%;
  margin-bottom: 0.2rem;
  transition: all 0.8s;
}

.btn-icon div:first-child {
  padding: 1rem 1rem;
}

.btn-icon div:last-child {
  text-align: center;
}

.btn-icon img {
  height: 1.5rem;
}

/* Red button */
.btn-high {
  font-size: 0.7rem;
  border: none !important;
  border-radius: 0.4rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02rem;
  white-space: nowrap;
  text-align: center;
  padding: 0.8rem 3rem;
  margin-bottom: 0.2rem;
  background-color: var(--highlight-color);
  transition: all 0.6s;
  cursor: pointer;
  display: inline-block;
}

.btn-high:hover {
  background-color: var(--prim-color);
  color: #000;
  box-shadow: 0px 0px 15px 3px rgba(255, 255, 255, 0.15);
  transition: all 0.6s
}

.btn-high.smallpad {
  padding: 0.6rem 0.8rem;
}


.btn-bla {
  font-size: 1.6rem;
  border: none !important;
  /*border-radius: 2rem;*/
  width: 100%;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02rem;
  white-space: nowrap;
  text-align: center;
  padding: 1rem 1rem;
  margin-bottom: 0.2rem;
  background-color: #000;
  transition: all 0.6s;
  cursor: pointer;
  display: inline-block;
}

.btn-bla:hover {
  background-color: #2c2c2c;
  color: #fff;
  transition: all 0.6s
}

.btn-red-small {
  font-size: 0.9rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02rem;
  white-space: nowrap;
  padding: 0.8rem 2rem;
  margin-bottom: 0.2rem;
  background-color: var(--red);
  transition: all 0.6s;
  cursor: pointer;
}

.btn-red-small:hover {
  background-color: #750014;
  transition: all 0.6s
}

.btn-ltred {
  font-size: 1.2rem;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02rem;
  white-space: nowrap;
  padding: 1.5rem 3rem;
  margin-bottom: 0.2rem;
  background-color: #c6535e;
  transition: all 0.6s;
  cursor: pointer;
}

.btn-ltred:hover {
  background-color: #750014;
  color: #fff;
  transition: all 0.6s
}

/* White outline button */
.btn-o-whi {
  border: 2px solid #fff;
  background-color: transparent;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  color: #fff;
  padding: 0.75rem 2.5rem;
  display: inline-block;
  transition: all 0.8s;
}

.btn-o-whi:hover {
  border: 2px solid #D7030A;
  background-color: #D7030A;
  color: #fff;
  transition: all 0.8s;
}

/* Grey outline button */
.btn-o-grey {
  border: 2px solid #5B5B5B;
  background-color: transparent;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  color: #5B5B5B;
  padding: 0.75rem 2.5rem;
  display: inline-block;
  transition: all 0.8s;
}

.btn-o-grey:hover {
  border: 2px solid #000;
  background-color: #000;
  color: #fff;
  transition: all 0.8s;
}

/* Green outline button */
.btn-o-green {
  border: 2px solid var(--zelena);
  border-radius: 6px;
  background-color: transparent;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  color: var(--zelena);
  padding: 0.75rem 3.5rem;
  display: inline-block;
  transition: all 0.8s;
}

.btn-o-green:hover {
  border: 2px solid var(--zelena);
  background-color: var(--zelena);
  color: #fff;
  transition: all 0.8s;
}






/* Wrapps */

.maxwrapp {
  width: 76rem;
  max-width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.bigwrapp {
  width: 60rem;
  max-width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.midwrapp {
  width: 80rem;
  max-width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.smallwrapp {
  width: 60rem;
  max-width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.sliderwrapp {
  width: 52rem;
  max-width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {

  .maxwrapp,
  .bigwrapp,
  .midwrapp,
  .smallwrapp {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .wrappnopadding {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
}


/* LINES */
span.title {
  width: 3rem;
  border-top: 3px solid #FF0000;
  display: inline-block;
  margin-left: 1rem;
  margin-bottom: 0.25rem;
}



/* INPUTS */
input {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.75rem 1rem;
  border: 1px solid #42413C;
  width: 100%;
  color: #fff;
  background: transparent;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

input:active,
input:focus {
  border-color: var(--sec-color);
  transition: border-color 0.2s;
}

input::placeholder {
  color: #555;
  font-weight: 400;
}

select {
  font-size: 1.25rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border: 1px solid #42413C;
  width: 100%;
  color: #000;
  background-color: transparent;
  transition: all 0.6s;
}

select:active,
select:focus {
  padding-left: 7%;
  padding-right: 7%;
  transition: all 0.6s;
}


textarea {
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.75rem 1rem;
  border: 1px solid #42413C;
  width: 100%;
  height: 8rem;
  color: #fff;
  background: transparent;
  font-family: inherit;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

textarea:active,
textarea:focus {
  border-color: var(--sec-color);
  transition: border-color 0.2s;
}

textarea::placeholder {
  color: #555;
  font-weight: 400;
}



input.search {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border: none;
  background-color: transparent;
  width: 85%;
  color: #fff;
  border-radius: 0;
  transition: all 0.8s;
}

input.search::placeholder {
  color: #fff;
}

input.search:active,
input.search:focus {
  box-shadow: none;
  outline-width: 0;
  transition: all 0.8s;
}



/* PAGINATION */

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination p {
  text-align: center;
}

.pagination a.prev,
.pagination a.next {
  font-size: 2rem !important;
  font-weight: 400 !important;
  vertical-align: middle;
  background-color: transparent !important;
  color: var(--sec-color) !important;
}

.pagination a.page-numbers {
  font-size: 0.75rem;
  background-color: #313131;
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.3rem;
  margin: 0 0.5rem;
  border-radius: 2rem;
  display: inline-block;
  transition: all 0.8s;
}

.pagination a.page-numbers:hover {
  background-color: var(--sec-color);
  color: #fff;
  transition: all 0.8s;
}

.pagination span.current {
  background-color: var(--sec-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.7rem 1.3rem;
  margin: 0 0.5rem;
  border-radius: 2rem;
  display: inline-block;
  transition: all 0.8s;
}

/* === THEME === */
/* HEADER */
.header {
  position: relative;
}

.header-slider {
  height: 35rem;
  margin-top: 4.9rem;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}


.header-slider .overlay {
  position: absolute;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.header-slider .overlay.is-active {
  opacity: 1;
}


.header-slider .headline {
  position: absolute;
  /* Vertical center*/
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 20;
}


.header-logo {
  width: 10rem;
  text-align: left;
  padding-top: 0.5rem;
  padding-bottom: 0rem;
  display: block;
  transition: all 0.6s ease;
}

#header-menu {
  position: fixed;
  width: 100%;
  height: 4.5rem;
  top: 2rem;
  z-index: 10000;
  background-color: rgba(13, 18, 33, 0);
  transition: all 0.6s ease;
}




/* Title with lines */
.title-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.title-lines .line {
  flex: 1;
  height: 1px;
  background: #444;
}



/* HOME JOURNEY */
.home-process .claim {
  padding: 2rem;
  border-right: 1px solid #333;
}

.home-process .claim:last-child {
  border-right: none;
}

.home-process .claim>div {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.home-process .claim>div img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.home-steps .step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-steps .number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--sec-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media screen and (max-width: 1200px) {

  .home-process .claim {
    padding: 2rem;
    border-right: none;
  }

  .home-process .claim:last-child {
    border-bottom: none;
  }


}

/* HOME MACHINERY */
.machinery {
  align-items: start;
}

.machine-box {
  margin: 1rem 1rem;
  border: 1px solid #2F2F2F;
  border-radius: 10px;
}

.machine-box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.machine-box .text {
  padding: 1rem;
}

.machine-box .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}




/* TESTIMONIALS */
.testimonial {
  padding: 0 0.75rem;
}

.testimonial h3 {
  line-height: 1;
  display: inline-block;
  padding: 1rem 1rem 0 1rem;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid #2F2F2F !important;
  border-radius: 4px !important;
}



/* Call to actions  */
.cta-normal {
  border-top: 1px solid #2f2f2f;
  border-bottom: 1px solid #2f2f2f;
}

.cta-normal .bigwrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

#cta-split-left {
  max-width: 38rem;
  margin-left: auto;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 768px) {

  #cta-split-left {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

}


/* FOOTER */
footer {
  padding: 3rem 0 1.5rem;
}

footer .left-border {
  border-left: 1px solid #2f2f2f;
  padding-left: 1rem;
}

footer .social a {
  display: inline-block;
  margin-right: 0.6rem;
}

footer .social a:last-child {
  display: inline-block;
  margin-right: 0;
}

footer .social img {
  width: 2rem;
}



/* FILTER PRODUCTS */
.filters {
  padding: 0;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background-color: #111;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  border: 1px solid #2e2e2e;
  user-select: none;
}

.filter-arrow {
  font-size: 0.7rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.filter-header.collapsed .filter-arrow {
  transform: rotate(-90deg);
}

.filter-body {
  padding: 0.75rem 1rem 0.5rem;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  max-height: 500px;
}

.filter-body.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: #ddd;
  padding: 0.35rem 0;
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: var(--highlight-color);
  cursor: pointer;
  border: 1px solid #555;
  background-color: #1a1a1a;
  padding: 0;
  margin: 0;
}



/* PAGINATION */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding-top: 2.5rem;
}

.pagination .page-num,
.pagination .page-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ccc;
  background-color: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pagination .page-num:hover,
.pagination .page-nav:hover {
  background-color: #2e2e2e;
  color: #fff;
}

.pagination .page-num.active {
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
  color: #fff;
}

.pagination .page-nav {
  font-size: 1.1rem;
  color: var(--highlight-color);
  background-color: transparent;
  border-color: transparent;
}

.pagination .page-nav:hover {
  background-color: transparent;
  color: var(--sec-color);
}

.pagination .page-dots {
  color: #666;
  font-size: 0.9rem;
  padding: 0 0.25rem;
  line-height: 2.2rem;
}


/* MACHINERY DETAILS */
.details-main-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.details-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.details-thumbs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.details-thumb {
  width: calc(12.5% - 0.35rem);
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease;
  border: 2px solid transparent;
}

.details-thumb:hover {
  opacity: 0.85;
}

.details-thumb.active {
  opacity: 1;
  border-color: var(--sec-color);
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.details-table tr {
  border-bottom: 1px solid #2a2a2a;
}

.details-table tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}

.details-table td {
  padding: 0.65rem 0.5rem;
  color: #ccc;
}

.details-table td:first-child {
  color: #fff;
  width: 40%;
}



/* EXPLAINER*/

.explainer {
  padding: 3rem 0;
  background-color: #111;
}

.explainer-intro {
  max-width: 42rem;
  margin: 0 auto 3.5rem auto;
}

.explainer-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 0.6rem;
}

.explainer-icon {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(52%) sepia(82%) saturate(700%) hue-rotate(355deg) brightness(105%);
}

.explainer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sec-color);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  margin-top: 0;
}

.explainer-text {
  color: #ccc;
  line-height: 1.5rem;
  margin: 0;
}

.explainer-text a {
  color: #ccc;
  text-decoration: underline;
}

.explainer-text a:hover {
  color: var(--sec-color);
}



/* SIMPLE PAGE */
.content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.content-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #222;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section__title {
  color: var(--sec-color);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.content-section__cols {
  columns: 2;
  gap: 2.5rem;
}

.content-section__cols p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .content-section__cols {
    columns: 1;
    gap: 1rem;
  }
}


/* CONTACT PAGE */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact__info h4 {
  font-size: 1.8rem;
}

.contact__info p {
  color: #aaa;
  line-height: 1.7rem;
  margin-bottom: 2rem;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.95rem;
  color: #ccc;
}

.contact__label {
  color: var(--sec-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact__list a {
  text-decoration: none;
}

.contact__list a:hover {
  color: var(--sec-color);
}


.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #aaa;
}

.contact__field input,
.contact__field textarea {
  background: transparent;
  border: 1px solid #42413c;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--sec-color);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: #555;
}

.contact__form .btn-high {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__row--two {
    grid-template-columns: 1fr;
  }
}



/* Navigation */

nav .topnav {
  /*background-color: #333;*/
  overflow: hidden;
}

/* Style the links inside the navigation bar */
nav .topnav a {
  color: #fff;
  text-align: center;
  padding: 1.7rem 0.9rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  /*background-color: rgba(0, 0, 0, 0);*/
  transition: 0.6s all;
  display: inline-block;
  position: relative;
  overflow: visible !important;
}

nav .topnav a::before {
  position: absolute;
  top: 4.6rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 3px;
  content: " ";
  background-color: var(--sec-color);
  transition: 0.6s all;
}

/* Add an active class to highlight the current page */
nav .active {
  background-color: var(--sec-color);
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
nav .topnav .icon {
  display: none;
}

/* Dropdown container - needed to position the dropdown content */
nav .dropdown {

  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
nav .dropdown .dropbtn {
  font-size: 1rem;
  border: none;
  outline: none;
  color: white;
  padding: 1rem 2rem;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.6s all;
}

/* Style the dropdown content (hidden by default) */
nav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 150;
}

/* Style the links inside the dropdown */
nav .dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
nav .topnav a:hover,
.dropdown:hover .dropbtn {
  color: var(--sec-color);
  transition: 0.6s all;
}

nav .topnav a:hover:before {
  position: absolute;
  top: 4.6rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 4rem;
  height: 3px;
  content: " ";
  background-color: var(--sec-color);
  transition: 0.6s all;
}

/* Add a grey background to dropdown links on hover */
nav .dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
nav .dropdown:hover .dropdown-content {
  display: block;
}


@media screen and (max-width: 1150px) {
  nav .topnav a {
    font-size: 0.8rem;
    padding: 1.7rem 0.64rem;
  }
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 980px) {

  nav .topnav>a {
    float: left;
    position: unset;
    background-color: #222;
  }

  nav .topnav>a,
  .dropdown .dropbtn {
    display: none;
    background-color: #222;
  }

  nav .topnav a::before {
    display: none;
  }

  nav .topnav>a.icon {
    position: absolute;
    right: 2rem;
    top: 0.6rem;
    display: block;
    font-size: 1.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: var(--prim-dark-color) !important;
    transition: none;
  }


}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 980px) {
  nav .topnav.responsive {
    position: absolute;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    top: 5rem;
    left: 0rem;
    border-radius: 1rem;
    width: 100%;
    overflow: visible;
  }

  /*nav .topnav.responsive a.icon {
        position: absolute;
        right: 2rem !important;
        top: calc(-4.5rem + 0.6rem) !important;
        display: block;
        padding: 0.6rem 1.2em !important;
        font-size: 1.5rem !important;
        transition: all 0.6s;
    }*/

  nav .topnav.responsive a.icon {
    position: absolute;
    right: 2rem;
    top: -4.4rem;
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 1.5rem;
    border: none;
    transition: none;
  }



  nav .topnav.responsive a {
    float: none;
    display: block !important;
    color: var(--prim-dark-color) !important;
    background-color: #222;
    border-bottom: 1px solid var(--light-prim-color);
    text-align: left;
    font-size: 1rem;
    padding: 1rem 4rem;
  }

  nav .topnav.responsive a:first-child {
    padding-top: 3rem;
  }

  nav .topnav.responsive .dropdown {
    float: none;
  }

  nav .topnav.responsive .dropdown-content {
    position: relative;
    display: block;
  }

  nav .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}



/* SLIDESHOW */
.slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  -webkit-animation-name: kenburns;
  animation-name: kenburns;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 24s;
  animation-duration: 24s;
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.slideshow-image:nth-child(1) {
  -webkit-animation-name: kenburns-1;
  animation-name: kenburns-1;
  z-index: 3;
}

.slideshow-image:nth-child(2) {
  -webkit-animation-name: kenburns-2;
  animation-name: kenburns-2;
  z-index: 2;
}

.slideshow-image:nth-child(3) {
  -webkit-animation-name: kenburns-3;
  animation-name: kenburns-3;
  z-index: 1;
}

.slideshow-image:nth-child(4) {
  -webkit-animation-name: kenburns-4;
  animation-name: kenburns-4;
  z-index: 0;
}



@-webkit-keyframes kenburns-1 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  1.5625% {
    opacity: 1;
  }

  23.4375% {
    opacity: 1;
  }

  26.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  98.4375% {
    opacity: 0;
    -webkit-transform: scale(1.21176);
    transform: scale(1.21176);
  }

  100% {
    opacity: 1;
  }
}

@keyframes kenburns-1 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  1.5625% {
    opacity: 1;
  }

  23.4375% {
    opacity: 1;
  }

  26.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  98.4375% {
    opacity: 0;
    -webkit-transform: scale(1.21176);
    transform: scale(1.21176);
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  26.5625% {
    opacity: 1;
  }

  48.4375% {
    opacity: 1;
  }

  51.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes kenburns-2 {
  23.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  26.5625% {
    opacity: 1;
  }

  48.4375% {
    opacity: 1;
  }

  51.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@-webkit-keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  51.5625% {
    opacity: 1;
  }

  73.4375% {
    opacity: 1;
  }

  76.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes kenburns-3 {
  48.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  51.5625% {
    opacity: 1;
  }

  73.4375% {
    opacity: 1;
  }

  76.5625% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@-webkit-keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  76.5625% {
    opacity: 1;
  }

  98.4375% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes kenburns-4 {
  73.4375% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  76.5625% {
    opacity: 1;
  }

  98.4375% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}



/* SLICK SLIDER */

.machinery-slider .slick-track {
    display: flex !important;
    align-items: flex-start !important;
}
.machinery-slider .slick-slide {
    height: auto !important;
}


.testimonials-slider-main .slick-track {
    display: flex !important;
    align-items: flex-start !important;
}
.testimonials-slider-main .slick-slide {
    height: auto !important;
}


/* BIGGER DOTS */
.slick-dots {
  bottom: -3rem !important;
}

.slick-dots li {
  margin: 0 6px !important;
}

.slick-dots li button {
  width: 8px !important;
  height: 8px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.slick-dots li button:before {
  font-size: 0.7rem !important;
  width: 8px !important;
  height: 8px !important;
  color: #fff !important;
  padding: 0px;
  opacity: 0.6;
}



@media screen and (max-width: 768px) {

  .slick-dots li button:before {
    color: #000 !important;
  }

}

/* <<<<<<< BIGGER DOTS */

/* ARROWS */
.slick-prev {
  left: -2rem !important;
}

.slick-next {
  right: -2rem !important;
}

.slick-prev,
.slick-next {
  width: 35px !important;
  height: 35px !important;
  background-color: var(--hm-panel) !important;
  border: 1px solid var(--hm-steel) !important;
  border-radius: 50% !important;
}

.slick-prev:before {
  content: url(img/ico-arrow-before.png) !important;
  width: 15px !important;
  opacity: .9 !important;

}

.slick-next:before {
  content: url(img/ico-arrow-next.png) !important;
  width: 15px !important;
  opacity: .9 !important;
}

/* <<<<<<< ARROWS */



/* Search Modal */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.search-modal__box {
  position: relative;
  width: min(660px, 90vw);
  padding: 3rem 2.5rem 2.5rem;
  background: #000000;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(-28px) scale(0.96);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* open state */
.search-modal.is-open {
  pointer-events: auto;
}

.search-modal.is-open .search-modal__backdrop {
  opacity: 1;
}

.search-modal.is-open .search-modal__box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.search-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.search-modal__close:hover {
  color: #aaa;
  transform: rotate(90deg);
}

.search-modal__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ccc;
  margin: 0 0 1.2rem;
}

.search-modal__input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #222;
  padding-bottom: 0.5rem;
  gap: 0.75rem;
}

.search-modal__icon {
  width: 1.4rem;
  height: 1.4rem;
  opacity: 0.5;
  flex-shrink: 0;
}

.search-modal__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.5rem;
  color: #ccc;
  background: transparent;
  padding: 0.2rem 0;
}

.search-modal__input::placeholder {
  color: #ccc;
}


/* Get a Quote Modal */
.getquote-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.getquote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.getquote-modal__box {
  position: relative;
  width: min(660px, 90vw);
  padding: 3rem 2.5rem 2.5rem;
  background: #000000;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(-28px) scale(0.96);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* open state */
.getquote-modal.is-open {
  pointer-events: auto;
}

.getquote-modal.is-open .getquote-modal__backdrop {
  opacity: 1;
}

.getquote-modal.is-open .getquote-modal__box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.getquote-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.getquote-modal__close:hover {
  color: #aaa;
  transform: rotate(90deg);
}

.getquote-modal__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ccc;
  margin: 0 0 1.2rem;
}

.getquote-modal__input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #222;
  padding-bottom: 0.5rem;
  gap: 0.75rem;
}

.getquote-modal__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.5rem;
  color: #ccc;
  background: transparent;
  padding: 0.2rem 0;
}

.getquote-modal__input::placeholder {
  color: #ccc;
}

/* ═══════════════════════════════════════════════════════════════
   HEAVYMETAL HOMEPAGE SECTIONS
   All new classes prefixed with hm- to avoid conflicts
═══════════════════════════════════════════════════════════════ */

/* --- CSS VARIABLES (HeavyMetal design tokens) --- */
:root {
  --hm-orange:      #FF5500;
  --hm-amber:       #E8A020;
  --hm-black:       #181816;
  --hm-ink:         #1E1D1B;
  --hm-dark:        #242320;
  --hm-panel:       #2A2926;
  --hm-steel:       #454340;
  --hm-wire:        #636158;
  --hm-muted:       #AAA090;
  --hm-cream:       #F2EaDe;
  --hm-gold:        #D4A017;
  --font-display:   'Bebas Neue', 'Staatliches', sans-serif;
  --font-cond:      'Barlow Condensed', sans-serif;
  --font-body-hm:   'Barlow', sans-serif;
}

/* ─── HERO ─── */
.hm-hero {
  position: relative;
  min-height: 60svh;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hm-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hm-hero-slash {
  position: absolute;
  bottom: 0;
  left: -10%;
  right: -10%;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--hm-orange) 35%, var(--hm-amber) 60%, transparent 100%);
  opacity: 0.6;
}

.hm-hero-gutter {
  position: absolute;
  left: 22px;
  top: 15%;
  bottom: 15%;
  z-index: 1;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--hm-orange) 30%, var(--hm-orange) 70%, transparent);
  opacity: 0.35;
}

.hm-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  padding-top: 2rem;
}

.hm-region-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
  font-family: var(--font-cond);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hm-amber);
  opacity: 0;
  animation: hmRiseIn 0.7s 0.1s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hm-region-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--hm-amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--hm-amber);
  animation: hmPulse 2s infinite;
}

.hm-region-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hm-amber);
  opacity: 0.5;
  width: 32px;
}

.hm-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 1.375rem;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0;
  animation: hmRiseIn 0.8s 0.25s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hm-line-accent {
  color: var(--hm-orange);
  display: block;
}

.hm-line-dim {
  color: rgba(255,255,255,0.55);
  font-size: 0.55em;
  display: block;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.hm-hero-sub {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(240,232,220,0.72);
  max-width: 22rem;
  margin-bottom: 2.125rem;
  opacity: 0;
  animation: hmRiseIn 0.8s 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hm-hero-sub strong {
  color: var(--hm-cream);
  font-weight: 500;
}

.hm-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 22rem;
  opacity: 0;
  animation: hmRiseIn 0.8s 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hm-btn-fire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--hm-orange);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.0625rem 1.5rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.hm-btn-fire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.hm-btn-fire:hover {
  color: #fff;
}

.hm-btn-fire:hover::before {
  transform: translateX(100%);
}

.hm-btn-fire:active {
  transform: scale(0.98);
}

.hm-btn-fire-arrow {
  width: 1.125rem;
  height: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  flex-shrink: 0;
}

.hm-btn-ghost {
  display: block;
  text-align: center;
  text-decoration: none;
  color: rgba(240,232,220,0.75);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(240,232,220,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.hm-btn-ghost:hover {
  border-color: var(--hm-cream);
  color: var(--hm-cream);
}

.hm-hero-regions {
  position: absolute;
  bottom: 3.25rem;
  right: 1.375rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  align-items: flex-end;
  opacity: 0;
  animation: hmFadeIn 1s 1s forwards;
}

@media screen and (max-width: 768px) {
  .hm-hero-regions {
    display: none;
  }
}

.hm-region-badge {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hm-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hm-dot-me { background: var(--hm-amber); }
.hm-dot-af { background: #5CC8A0; }
.hm-dot-eu { background: #6699FF; }

/* ─── TICKER ─── */
.hm-ticker-wrap {
  background: var(--hm-orange);
  overflow: hidden;
  padding: 0.625rem 0;
  position: relative;
}

.hm-ticker-wrap::before,
.hm-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 1;
}

.hm-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--hm-orange), transparent);
}

.hm-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--hm-orange), transparent);
}

.hm-ticker {
  display: flex;
  white-space: nowrap;
  animation: hmTicker 35s linear infinite;
  width: max-content;
}

.hm-ticker-item {
  font-family: var(--font-cond);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.hm-ticker-item::after {
  content: '◆';
  font-size: 6px;
  opacity: 0.5;
}

@keyframes hmTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── STATS ─── */
.hm-stats-bar {
  background: var(--hm-ink);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--hm-steel);
}

.hm-stats-intro {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--hm-muted);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.hm-stats-intro::before,
.hm-stats-intro::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--hm-wire);
}

.hm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.25rem;
}

.hm-stat {
  text-align: center;
  position: relative;
}

.hm-stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--hm-wire);
}

.hm-stat:last-child::after {
  display: none;
}

.hm-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--hm-orange);
  display: block;
  letter-spacing: 0.02em;
}

.hm-unit {
  font-size: 0.55em;
  color: var(--hm-amber);
}

.hm-stat-label {
  font-family: var(--font-cond);
  font-size: 1rem;
  color: var(--hm-muted);
  margin-top: 0.3125rem;
  letter-spacing: 0.06em;
}

.hm-stat-sub {
  font-size: 0.9rem;
  color: var(--hm-wire);
  margin-top: 2px;
}

@media screen and (max-width: 768px) {
  .hm-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hm-stat:nth-child(2)::after { display: none; }
  .hm-stat:nth-child(3)::after { display: block; }
}

/* ─── SECTION UTILITIES ─── */
.hm-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--hm-orange);
  text-transform: uppercase;
}

.hm-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--hm-orange);
}

.hm-section-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 11vw, 4rem);
  line-height: 0.92;
  margin-bottom: 0.875rem;
  margin-top: 1.5rem !important;
  font-weight: 400;
  text-transform: uppercase;
}

.hm-section-title em {
  color: var(--hm-orange);
  font-style: normal;
  display: block;
}

/* ─── HOW IT WORKS ─── */
.hm-process {
  padding: 4rem 0;
  background: var(--hm-black);
}

.hm-process-sub {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  color: var(--hm-muted);
  line-height: 1.7;
  margin-bottom: 2.75rem;
  max-width: 21.25rem;
}

.hm-steps {
  display: flex;
  flex-direction: column;
  position: relative;
}



.hm-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.625rem 0;
  border-bottom: 1px solid var(--hm-steel);
  position: relative;
}

.hm-step:last-child {
  border-bottom: none;
}

.hm-step-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hm-step-circle {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: var(--hm-panel);
  border: 1.5px solid var(--hm-wire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--hm-muted);
  transition: all 0.3s;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hm-step:hover .hm-step-circle {
  border-color: var(--hm-orange);
  color: var(--hm-orange);
  background: rgba(255,85,0,0.08);
  box-shadow: 0 0 20px rgba(255,85,0,0.2);
}

.hm-step-body {
  padding-top: 0.625rem;
}

.hm-step-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.4375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4375rem;
  color: #fff;
}

.hm-step-desc {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.hm-step-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
}

.hm-pill {
  font-family: var(--font-cond);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,85,0,0.1);
  color: var(--hm-orange);
  border: 1px solid rgba(255,85,0,0.25);
}

.hm-pill-amber {
  background: rgba(232,160,32,0.1);
  color: var(--hm-amber);
  border-color: rgba(232,160,32,0.2);
}

/* ─── SERVICES ─── */
.hm-services {
  padding: 4rem 0;
  background: var(--hm-dark);
  position: relative;
  overflow: hidden;
}

.hm-services::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,85,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hm-service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-top: 2.25rem;
}

@media screen and (max-width: 768px) {
  .hm-service-cards {
    grid-template-columns: 1fr;
  }
}

.hm-service-card {
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.hm-service-card:hover {
  border-color: rgba(255,85,0,0.4);
  box-shadow: 0 4px 24px rgba(255,85,0,0.08);
}

.hm-service-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--hm-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.hm-service-card:hover .hm-service-card-bar {
  transform: scaleX(1);
}

.hm-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}

.hm-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255,85,0,0.1);
  border: 1px solid rgba(255,85,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hm-card-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  stroke: var(--hm-orange);
}

.hm-card-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.4375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
  color: #fff;
}

.hm-card-badge {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

.hm-badge-hot {
  background: rgba(255,85,0,0.2);
  color: var(--hm-orange);
}

.hm-badge-new {
  background: rgba(232,160,32,0.2);
  color: var(--hm-amber);
}

.hm-card-desc {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.hm-card-link {
  font-family: var(--font-cond);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--hm-orange);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.hm-card-link:hover {
  gap: 12px;
  color: var(--hm-orange);
}

.hm-card-link::after {
  content: '→';
}

.hm-dealer-card {
  background: linear-gradient(135deg, var(--hm-panel) 60%, rgba(255,85,0,0.04) 100%);
}

/* ─── TESTIMONIALS ─── */
.hm-proof {
  padding: 4rem 0;
  background: var(--hm-black);
}

.hm-testimonials-wrap {
  position: relative;
  margin-top: 2.25rem;
}

.hm-testimonials-slider .hm-testimonial {
  padding: 2rem 2rem;
}

.hm-testimonial {
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.hm-testimonial:hover {
  border-color: rgba(255,85,0,0.3);
}

.hm-testimonial::after {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--hm-orange);
  opacity: 0.1;
  position: absolute;
  top: 4px;
  right: 14px;
  pointer-events: none;
}

.hm-t-region-bar {
  height: 2px;
  border-radius: 1px;
  margin-bottom: 1rem;
  width: 40px;
}

.hm-bar-me { background: linear-gradient(90deg, var(--hm-amber), var(--hm-orange)); }
.hm-bar-af { background: linear-gradient(90deg, #5CC8A0, #2A9D6C); }
.hm-bar-eu { background: linear-gradient(90deg, #6699FF, #3366CC); }
.hm-bar-as { background: linear-gradient(90deg, #CC66FF, #9933CC); }

.hm-t-quote {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(240,232,220,0.82);
  font-style: italic;
  margin-bottom: 1.125rem;
}

.hm-t-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hm-t-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}

.hm-av-me     { background: rgba(232,160,32,0.2);  color: var(--hm-amber); border: 1px solid rgba(232,160,32,0.3); }
.hm-av-af     { background: rgba(92,200,160,0.2);  color: #5CC8A0;         border: 1px solid rgba(92,200,160,0.3); }
.hm-av-eu     { background: rgba(102,153,255,0.2); color: #6699FF;         border: 1px solid rgba(102,153,255,0.3); }
.hm-av-as     { background: rgba(204,102,255,0.2); color: #CC66FF;         border: 1px solid rgba(204,102,255,0.3); }
.hm-av-dealer { background: rgba(212,160,23,0.2);  color: var(--hm-gold);  border: 1px solid rgba(212,160,23,0.3); }

.hm-bar-dealer { background: linear-gradient(90deg, var(--hm-gold), var(--hm-amber)); }

/* deal-value tag (gold variant used on dealer testimonials) */
.hm-t-deal-tag {
  color: var(--hm-gold);
  background: rgba(212,160,23,0.12);
  border-color: rgba(212,160,23,0.25);
}

.hm-t-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.hm-t-role {
  font-family: var(--font-body-hm);
  font-size: 0.875rem;
  color: var(--hm-muted);
  margin-top: 2px;
}

.hm-t-machine-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.75rem;
  font-family: var(--font-cond);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hm-muted);
  background: var(--hm-steel);
  border-radius: 3px;
  padding: 4px 9px;
}

.hm-t-machine-tag::before {
  content: '🔧';
  font-size: 9px;
}

/* Slick arrow overrides for testimonials */
.hm-slick-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.hm-slick-nav:hover {
  background: var(--hm-orange);
  border-color: var(--hm-orange);
}

.hm-slick-prev {
  left: -1.5rem;
}

.hm-slick-next {
  right: -1.5rem;
}

/* Slick track/slide height fix — same pattern as machinery-slider and testimonials-slider-main */
.hm-testimonials-slider .slick-track {
  display: flex !important;
  align-items: flex-start !important;
}

.hm-testimonials-slider .slick-slide {
  height: auto !important;
}

@media screen and (max-width: 768px) {
  .hm-slick-prev { left: 0; }
  .hm-slick-next { right: 0; }

  .hm-testimonials-wrap {
    padding: 0 2.5rem;
  }
}

/* Slick dot color reset */
.hm-testimonials-slider .slick-dots li button:before {
  color: var(--hm-orange);
}

/* ─── FEATURED MACHINERY ─── */
.hm-machinery-section {
  background: var(--hm-ink);
  border-top: 1px solid var(--hm-steel);
  border-bottom: 1px solid var(--hm-steel);
}

/* ─── COUNTRIES ─── */
.hm-countries {
  padding: 3.25rem 0 4rem;
  background: var(--hm-ink);
}

.hm-countries-sub {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  color: var(--hm-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 21.25rem;
}

.hm-region-group {
  margin-bottom: 1.75rem;
}

.hm-region-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hm-rdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.hm-flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hm-flag-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-radius: 4px;
  padding: 7px 12px;
  font-family: var(--font-cond);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.65);
  transition: border-color 0.2s;
}

.hm-flag-chip:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* ─── CTA ESTIMATE BLOCK ─── */
.hm-cta-block {
  padding: 0 0 4rem;
  background: var(--hm-ink);
}

.hm-cta-inner {
  background: linear-gradient(135deg, var(--hm-orange) 0%, #CC3D00 100%);
  border-radius: 12px;
  padding: 2.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hm-cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.hm-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
}

.hm-cta-tag {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}

.hm-cta-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.625rem);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
}

.hm-cta-body {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.75rem;
  max-width: 20rem;
}

.hm-cta-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.hm-cta-input {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 0.8125rem 1rem;
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  color: #fff;
  width: 100%;
}

.hm-cta-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.hm-cta-input:focus {
  border-color: rgba(255,255,255,0.5);
  outline: none;
}

.hm-btn-white {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #fff;
  color: var(--hm-orange);
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s;
}

.hm-btn-white:hover {
  opacity: 0.92;
  color: var(--hm-orange);
}

.hm-cta-note {
  text-align: center;
  font-family: var(--font-body-hm);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

/* ─── KEYFRAMES ─── */
@keyframes hmRiseIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hmFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes hmPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--hm-amber); }
  50%       { opacity: 0.5; box-shadow: 0 0 12px var(--hm-amber); }
}


/* ══════════════════════════════════════════════════════════════
   ABOUT US PAGE — HM SECTIONS
   ══════════════════════════════════════════════════════════════ */

/* ── PAGE HERO ── */
.hm-page-hero {
  position: relative;
  background: var(--hm-ink);
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}
.hm-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,85,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hm-hero-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 18rem);
  line-height: 1;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
}
.hm-page-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: var(--hm-cream);
  text-transform: uppercase;
  margin: 0.75rem 0 1.5rem;
}
.hm-page-h1 em {
  font-style: normal;
  color: var(--hm-orange);
}
.hm-page-lead {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(240,232,220,0.72);
  max-width: 36rem;
  border-left: 3px solid var(--hm-orange);
  padding-left: 1rem;
  margin: 0;
}
.hm-page-lead strong {
  color: var(--hm-cream);
}

/* ── PINPRO BAND ── */
.hm-pinpro-band {
  background: var(--hm-steel);
  border-top: 1px solid var(--hm-wire);
  border-bottom: 1px solid var(--hm-wire);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hm-pinpro-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.hm-pinpro-label {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hm-muted);
}
.hm-pinpro-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--hm-cream);
  line-height: 1.1;
}
.hm-pinpro-desc {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  color: var(--hm-muted);
  margin-top: 0.125rem;
}

/* ── MISSION ── */
.hm-mission {
  background: var(--hm-dark);
  padding: 5rem 1.5rem;
}
.hm-mission-card {
  background: var(--hm-panel);
  border: 1px solid var(--hm-wire);
  border-left: 4px solid var(--hm-orange);
  border-radius: 6px;
  padding: 2rem 2.25rem;
  margin: 2rem 0;
  position: relative;
}
.hm-mission-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--hm-orange);
  opacity: 0.25;
}
.hm-mission-text {
  font-family: var(--font-cond);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--hm-cream);
  margin-bottom: 1rem;
}
.hm-mission-sub {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(240,232,220,0.65);
  margin: 0;
}
.hm-body-text {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(240,232,220,0.65);
  max-width: 52rem;
}
.hm-body-text strong { color: var(--hm-cream); }

/* ── WHAT WE DO ── */
.hm-what-we-do {
  background: var(--hm-black);
  padding: 5rem 1.5rem;
}
.hm-service-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--hm-wire);
}
.hm-service-row {
  display: flex;
  gap: 1.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--hm-wire);
  align-items: flex-start;
  transition: padding-left 0.25s ease;
  cursor: default;
}
.hm-service-row:hover {
  padding-left: 0.75rem;
}
.hm-srv-num {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1;
  color: var(--hm-wire);
  flex-shrink: 0;
  width: 2.5rem;
  padding-top: 0.25rem;
  transition: color 0.25s ease;
}
.hm-service-row:hover .hm-srv-num {
  color: var(--hm-orange);
}
.hm-srv-title {
  font-family: var(--font-cond);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--hm-cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hm-srv-desc {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(240,232,220,0.6);
  margin: 0;
}
.hm-srv-desc strong { color: var(--hm-cream); }

/* ── CAT SUPPORT ── */
.hm-cat-support {
  background: var(--hm-dark);
  padding: 5rem 1.5rem;
}
.hm-cat-banner {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hm-wire);
  margin-bottom: 2rem;
}
.hm-cat-banner-top {
  background: #FFCD11;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hm-cat-logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hm-cat-triangle svg {
  display: block;
}
.hm-cat-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hm-cat-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #080806;
  letter-spacing: 0.03em;
  line-height: 1;
}
.hm-cat-sub {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(8,8,6,0.65);
}
.hm-cat-official-tag {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #080806;
  background: rgba(0,0,0,0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  white-space: nowrap;
}
.hm-cat-banner-body {
  background: var(--hm-panel);
  padding: 2.5rem 2rem;
}
.hm-cat-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  line-height: 1;
  color: var(--hm-cream);
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.hm-cat-headline em {
  font-style: normal;
  color: #FFCD11;
}
.hm-cat-banner-sub {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(240,232,220,0.6);
  max-width: 50rem;
  margin-bottom: 2.5rem;
}
.hm-cat-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.hm-cat-svc {
  background: var(--hm-steel);
  border: 1px solid var(--hm-wire);
  border-top: 2px solid #FFCD11;
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.hm-cat-svc-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  padding-top: 0.125rem;
}
.hm-cat-svc-title {
  font-family: var(--font-cond);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--hm-cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.hm-cat-svc-desc {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(240,232,220,0.58);
  margin-bottom: 0.75rem;
}
.hm-cat-svc-desc strong { color: rgba(240,232,220,0.75); }
.hm-cat-svc-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFCD11;
  background: rgba(255,205,17,0.1);
  border: 1px solid rgba(255,205,17,0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-right: 0.375rem;
  margin-top: 0.25rem;
}
.hm-cat-disclaimer {
  font-family: var(--font-body-hm);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--hm-muted);
  border-top: 1px solid var(--hm-wire);
  padding-top: 1.25rem;
  margin: 0;
}

/* CAT INC BLOCK */
.hm-catinc-block {
  background: var(--hm-panel);
  border: 1px solid var(--hm-wire);
  border-left: 4px solid var(--hm-orange);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.hm-catinc-icon {
  font-size: 2.25rem;
  flex-shrink: 0;
}
.hm-catinc-label {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hm-muted);
  margin-bottom: 0.25rem;
}
.hm-catinc-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--hm-cream);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hm-catinc-badge {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hm-orange);
  background: rgba(255,85,0,0.1);
  border: 1px solid rgba(255,85,0,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.875rem;
}
.hm-catinc-desc {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(240,232,220,0.6);
  margin-bottom: 1rem;
}
.hm-catinc-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hm-spec-chip {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,232,220,0.7);
  background: var(--hm-steel);
  border: 1px solid var(--hm-wire);
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
}

/* ── WHY US ── */
.hm-why-us {
  background: var(--hm-black);
  padding: 5rem 1.5rem;
}
.hm-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.hm-pillar {
  background: var(--hm-panel);
  border: 1px solid var(--hm-wire);
  border-radius: 6px;
  padding: 1.75rem;
  position: relative;
}
.hm-pillar-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hm-orange) 0%, transparent 100%);
  border-radius: 6px 6px 0 0;
}
.hm-pillar-wide {
  grid-column: 1 / -1;
}
.hm-pillar-wide-inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.hm-pillar-icon {
  font-size: 1.75rem;
  margin-bottom: 0.875rem;
  line-height: 1;
}
.hm-pillar-title {
  font-family: var(--font-cond);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hm-cream);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hm-pillar-desc {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(240,232,220,0.6);
  margin: 0;
}

/* ── OUR APPROACH ── */
.hm-approach {
  background: var(--hm-dark);
  padding: 5rem 1.5rem;
}
.hm-approach-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.hm-ablock {
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--hm-orange);
  background: var(--hm-panel);
  border-radius: 0 6px 6px 0;
}
.hm-ablock-title {
  font-family: var(--font-cond);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hm-cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.hm-ablock-text {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(240,232,220,0.6);
  margin: 0;
}

/* ── TIMELINE ── */
.hm-timeline {
  background: var(--hm-black);
  padding: 5rem 1.5rem;
}
.hm-tl-items {
  margin-top: 2.5rem;
  position: relative;
  padding-left: 2.5rem;
}
.hm-tl-items::before {
  content: '';
  position: absolute;
  left: 0.9375rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--hm-orange), var(--hm-wire));
}
.hm-tl-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  position: relative;
  align-items: flex-start;
}
.hm-tl-item:last-child {
  margin-bottom: 0;
}
.hm-tl-dot {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: var(--hm-steel);
  border: 2px solid var(--hm-orange);
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--hm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  flex-shrink: 0;
}
.hm-tl-year {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--hm-orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.hm-tl-title {
  font-family: var(--font-cond);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--hm-cream);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.hm-tl-desc {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(240,232,220,0.6);
  margin-bottom: 0.75rem;
}
.hm-tl-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hm-city-chip {
  font-family: var(--font-cond);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(240,232,220,0.65);
  background: var(--hm-steel);
  border: 1px solid var(--hm-wire);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}

/* ── COUNTRIES ABOUT ── */
.hm-countries-about {
  background: var(--hm-dark);
  padding: 5rem 1.5rem;
}
.hm-flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.875rem;
}
.hm-flag-chip-city {
  background: var(--hm-steel);
  border: 1px solid var(--hm-wire);
  border-radius: 5px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  min-width: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
.hm-fcc-flag {
  font-size: 1.375rem;
  line-height: 1.2;
}
.hm-fcc-name {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hm-cream);
  white-space: nowrap;
}
.hm-fcc-city {
  font-family: var(--font-body-hm);
  font-size: 0.875rem;
  color: var(--hm-muted);
  white-space: nowrap;
}
.hm-rdot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ── DUAL CTA ── */
.hm-dual-cta {
  background: var(--hm-black);
  padding: 5rem 1.5rem;
}
.hm-cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.hm-cta-card {
  border-radius: 8px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hm-cta-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.hm-cta-fire {
  background: linear-gradient(135deg, var(--hm-orange) 0%, #cc3a00 100%);
}
.hm-cta-dark {
  background: var(--hm-panel);
  border: 1px solid var(--hm-wire);
}
.hm-dcta-tag {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.625rem;
}
.hm-cta-fire .hm-dcta-tag {
  color: rgba(255,255,255,0.75);
}
.hm-dcta-h {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.hm-dcta-p {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.hm-cta-fire .hm-dcta-p {
  color: rgba(255,255,255,0.8);
}
.hm-btn-ghost-dark {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: border-color 0.2s, color 0.2s;
}
.hm-btn-ghost-dark:hover {
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  text-decoration: none;
}

/* ── ABOUT PAGE RESPONSIVE ── */
@media screen and (max-width: 960px) {
  .hm-cat-services { grid-template-columns: 1fr; }
  .hm-approach-blocks { grid-template-columns: 1fr; }
  .hm-cta-cards { grid-template-columns: 1fr; }
  .hm-pillars { grid-template-columns: 1fr; }
}
@media screen and (max-width: 768px) {
  .hm-page-hero { padding: 6rem 1.25rem 3.5rem; }
  .hm-pinpro-band { padding: 1rem 1.25rem; }
  .hm-mission,
  .hm-what-we-do,
  .hm-cat-support,
  .hm-why-us,
  .hm-approach,
  .hm-timeline,
  .hm-countries-about,
  .hm-dual-cta { padding: 4rem 1.25rem; }
  .hm-mission-card { padding: 1.5rem 1.5rem; }
  .hm-cat-banner-body { padding: 1.75rem 1.25rem; }
  .hm-catinc-block { flex-direction: column; }
  .hm-tl-items { padding-left: 2rem; }
  .hm-tl-dot { left: -2rem; width: 1.5rem; height: 1.5rem; font-size: 0.875rem; }
  .hm-hero-ghost { display: none; }
}
@media screen and (max-width: 480px) {
  .hm-cat-svc { flex-direction: column; gap: 0.625rem; }
  .hm-catinc-block { padding: 1.5rem; }
  .hm-cta-card { padding: 2rem 1.5rem; }
}


/* ══════════════════════════════════════════════════════════════
   DEALERS PAGE — HM SECTIONS
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.hm-d-hero {
  position: relative;
  min-height: 60svh;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hm-d-hero-content {
  position: relative;
  z-index: 1;
  max-width: 76rem;
  margin: 0 auto;
  width: 100%;
}
.hm-d-hero-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 0.45rem 0.875rem;
}
.hm-d-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 15vw, 5.125rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hm-d-line-dim {
  display: block;
  color: rgba(255,255,255,0.22);
  font-size: 0.52em;
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
}
.hm-d-line-gold {
  display: block;
  color: var(--hm-gold);
}
.hm-d-hero-sub {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.62);
  max-width: 26rem;
  margin-bottom: 2rem;
  border-left: 2px solid var(--hm-gold);
  padding-left: 1rem;
}
.hm-d-hero-sub strong { color: var(--hm-cream); font-weight: 500; }
.hm-d-numbers {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hm-d-hn {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.625rem 0.875rem;
  min-width: 5.625rem;
}
.hm-d-hn-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--hm-gold);
}
.hm-d-hn-label {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.07em;
  margin-top: 0.125rem;
}

/* ── VALUE STRIP ── */
.hm-d-value-strip {
  background: var(--hm-gold);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.hm-d-vs-icon { font-size: 1.375rem; flex-shrink: 0; }
.hm-d-vs-text {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  color: var(--hm-black);
  line-height: 1.3;
}
.hm-d-vs-text span {
  display: block;
  font-weight: 400;
  font-size: 0.9375rem;
  opacity: 0.65;
  margin-top: 0.1rem;
}

/* ── WHY PARTNER ── */
.hm-d-why {
  background: var(--hm-black);
  padding: 5rem 1.5rem;
}
.hm-d-gold { color: var(--hm-gold); }
.hm-d-section-sub {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--hm-muted);
  max-width: 26rem;
  margin-bottom: 2.5rem;
}
.hm-d-why-cards {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.hm-d-why-card {
  background: var(--hm-panel);
  border: 1px solid var(--hm-wire);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.hm-d-why-card:hover { border-color: rgba(212,160,23,0.4); }
.hm-d-why-card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--hm-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.hm-d-why-card:hover .hm-d-why-card-bar { transform: scaleX(1); }
.hm-d-why-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.hm-d-why-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hm-cream);
  margin-bottom: 0.375rem;
}
.hm-d-why-desc {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.52);
  margin: 0;
}

/* ── GLOBAL DEMAND ── */
.hm-d-demand {
  background: var(--hm-dark);
  padding: 5rem 1.5rem;
}
.hm-d-machine-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}
.hm-d-mtype {
  background: var(--hm-panel);
  border: 1px solid var(--hm-wire);
  border-radius: 8px;
  padding: 1.25rem;
  transition: border-color 0.3s;
}
.hm-d-mtype:hover { border-color: rgba(212,160,23,0.3); }
.hm-d-mtype-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.hm-d-mtype-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hm-cream);
  margin-bottom: 0.25rem;
}
.hm-d-mtype-desc {
  font-family: var(--font-body-hm);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.hm-d-callout {
  background: linear-gradient(135deg, rgba(212,160,23,0.1) 0%, transparent 70%);
  border: 1px solid rgba(212,160,23,0.22);
  border-left: 3px solid var(--hm-gold);
  border-radius: 8px;
  padding: 1.25rem 1.25rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--hm-cream);
  line-height: 1.45;
}

/* ── SIMPLE PROCESS ── */
.hm-d-process {
  background: var(--hm-black);
  padding: 5rem 1.5rem;
}
.hm-d-process-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 2.5rem;
}
.hm-d-pstep {
  display: flex;
  gap: 1.125rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--hm-wire);
}
.hm-d-pstep:last-child { border-bottom: none; }
.hm-d-pstep-circle {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--hm-panel);
  border: 1.5px solid var(--hm-wire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--hm-muted);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.hm-d-pstep:hover .hm-d-pstep-circle {
  border-color: var(--hm-gold);
  color: var(--hm-gold);
  box-shadow: 0 0 16px rgba(212,160,23,0.22);
}
.hm-d-pstep-body { padding-top: 0.625rem; }
.hm-d-pstep-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hm-cream);
  margin-bottom: 0.375rem;
}
.hm-d-pstep-desc {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.625rem;
}
.hm-d-pstep-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 20px;
  background: rgba(212,160,23,0.1);
  color: var(--hm-gold);
  border: 1px solid rgba(212,160,23,0.22);
}

/* ── EXPORT ── */
.hm-d-export {
  background: var(--hm-dark);
  padding: 5rem 1.5rem;
}
.hm-d-export-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.hm-d-export-row {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--hm-wire);
  align-items: flex-start;
}
.hm-d-export-row:last-child { border-bottom: none; }
.hm-d-export-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 7px;
  background: rgba(255,85,0,0.08);
  border: 1px solid rgba(255,85,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0625rem;
}
.hm-d-export-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hm-cream);
  margin-bottom: 0.25rem;
}
.hm-d-export-desc {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ── LIVE ACTIVITY STRIP ── */
.hm-d-activity {
  background: var(--hm-dark);
  border-top: 1px solid var(--hm-wire);
  border-bottom: 1px solid var(--hm-wire);
  padding: 1.375rem 1.5rem;
}
.hm-d-activity-label {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hm-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hm-d-activity-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ECC71;
  flex-shrink: 0;
  animation: hmBlink 1.5s infinite;
}
@keyframes hmBlink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hm-d-activity-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 76rem;
  margin: 0 auto;
}
.hm-d-aitem {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}
.hm-d-aitem strong { color: var(--hm-cream); font-weight: 500; }
.hm-d-adot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.hm-d-dot-sold   { background: #2ECC71; }
.hm-d-dot-active { background: var(--hm-gold); }
.hm-d-dot-new    { background: var(--hm-orange); }
.hm-d-aitem-time {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  color: var(--hm-muted);
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── DEALERS PROOF SUB ── */
.hm-d-proof-sub {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--hm-muted);
  max-width: 36rem;
  margin-bottom: 2rem;
}

/* ── MAIN CTA ── */
.hm-d-page-cta {
  background: var(--hm-black);
  padding: 5rem 1.5rem;
}
.hm-d-cta-main {
  background: linear-gradient(135deg, #1A1200 0%, #0F0C00 100%);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hm-d-cta-main::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hm-d-cta-tag {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,160,23,0.6);
  margin-bottom: 0.875rem;
}
.hm-d-cta-h {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 2.875rem);
  line-height: 0.96;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.hm-d-cta-h em {
  font-style: normal;
  color: var(--hm-gold);
  display: block;
}
.hm-d-cta-p {
  font-family: var(--font-body-hm);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}
.hm-d-cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hm-d-btn-gold {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--hm-gold);
  color: var(--hm-black);
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.125rem 1.5rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.hm-d-btn-gold:hover { background: #c09010; text-decoration: none; color: var(--hm-black); }
.hm-d-btn-ghost-gold {
  display: block;
  text-align: center;
  text-decoration: none;
  background: transparent;
  color: var(--hm-gold);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.0625rem 1.5rem;
  border-radius: 4px;
  border: 1.5px solid rgba(212,160,23,0.35);
  transition: border-color 0.2s, color 0.2s;
}
.hm-d-btn-ghost-gold:hover { border-color: var(--hm-gold); color: var(--hm-gold); text-decoration: none; }
.hm-d-reassurance {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.hm-d-reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.hm-d-reassurance-item::before {
  content: '✓';
  color: #2ECC71;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── DEALERS PAGE RESPONSIVE ── */
@media screen and (min-width: 768px) {
  .hm-d-cta-buttons { flex-direction: row; }
  .hm-d-why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media screen and (max-width: 767px) {
  .hm-d-hero { padding: 6rem 1.25rem 3rem; }
  .hm-d-value-strip { padding: 0.875rem 1.25rem; }
  .hm-d-why,
  .hm-d-demand,
  .hm-d-process,
  .hm-d-export,
  .hm-d-page-cta { padding: 4rem 1.25rem; }
  .hm-d-machine-types { grid-template-columns: 1fr; }
  .hm-d-cta-main { padding: 2rem 1.5rem; }
}

/* ════════════════════════════════════════
   SUPPORT PAGE
════════════════════════════════════════ */

/* Emergency strip */
.hm-sp-emergency {
  background: #CC2200;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hm-sp-emergency-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff; flex-shrink: 0;
  animation: hmPulse 1s infinite;
}
.hm-sp-emergency-text {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}
.hm-sp-emergency-text span {
  opacity: 0.7; font-weight: 400;
  display: block; font-size: 0.875rem;
  letter-spacing: 0.06em; text-transform: none;
  margin-top: 1px;
}

/* Response stats */
.hm-sp-stats {
  background: var(--hm-panel);
  border-bottom: 1px solid var(--hm-steel);
  padding: 2rem 1.5rem;
}
.hm-sp-stats-label {
  font-family: var(--font-cond);
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.22em; color: var(--hm-muted);
  text-transform: uppercase; text-align: center;
  margin-bottom: 1.375rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.hm-sp-stats-label::before,
.hm-sp-stats-label::after {
  content: ''; flex: 1; max-width: 3rem; height: 1px; background: var(--hm-steel);
}
.hm-sp-stats-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
}
.hm-sp-rstat {
  text-align: center; padding: 0 0.5rem; position: relative;
}
.hm-sp-rstat::after {
  content: ''; position: absolute; right: 0;
  top: 15%; bottom: 15%; width: 1px; background: var(--hm-steel);
}
.hm-sp-rstat:last-child::after { display: none; }
.hm-sp-rstat-num {
  font-family: var(--font-display);
  font-size: 2.5rem; line-height: 1;
  display: block; letter-spacing: 0.02em;
}
.hm-sp-rstat-unit { font-size: 0.5em; }
.hm-sp-num-green  { color: #5CC8A0; }
.hm-sp-num-orange { color: var(--hm-orange); }
.hm-sp-num-amber  { color: var(--hm-amber); }
.hm-sp-rstat-label {
  font-family: var(--font-cond); font-size: 0.875rem;
  color: var(--hm-muted); margin-top: 0.375rem; letter-spacing: 0.04em;
}

/* CAT Diagnostics section */
.hm-sp-cat-diag {
  padding: 4rem 1.5rem 5rem;
  background: var(--hm-dark);
}
.hm-sp-cat-em { color: #FFCD11; font-style: normal; }
.hm-sp-scope-grid {
  display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem;
}
.hm-sp-scope-card {
  border-radius: 8px; padding: 1.125rem 1.25rem;
  font-size: 0.9375rem; line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.hm-sp-scope-green {
  background: rgba(92,200,160,0.07);
  border: 1px solid rgba(92,200,160,0.25);
  border-left: 3px solid #5CC8A0;
}
.hm-sp-scope-cat {
  background: rgba(255,205,17,0.06);
  border: 1px solid rgba(255,205,17,0.2);
  border-left: 3px solid #FFCD11;
}
.hm-sp-scope-label {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 0.9375rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.375rem;
}
.hm-sp-scope-label-green { color: #5CC8A0; }
.hm-sp-scope-label-cat   { color: #FFCD11; }

/* CAT banner */
.hm-sp-cat-banner {
  background: linear-gradient(135deg, #120e00 0%, #0a0800 100%);
  border: 1px solid rgba(255,205,17,0.25);
  border-radius: 12px; overflow: hidden;
}
.hm-sp-cat-head {
  background: #FFCD11; padding: 1rem 1.375rem;
  display: flex; align-items: center; justify-content: space-between;
}
.hm-sp-cat-head-left { display: flex; align-items: center; gap: 0.75rem; }
.hm-sp-cat-head-title {
  font-family: var(--font-cond); font-weight: 900;
  font-size: 1.125rem; letter-spacing: 0.04em;
  color: #080806; line-height: 1;
}
.hm-sp-cat-head-title span {
  display: block; font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.2em; color: rgba(0,0,0,0.5); margin-top: 1px;
}
.hm-sp-cat-head-badge {
  background: rgba(0,0,0,0.15); border-radius: 3px;
  font-family: var(--font-cond); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.15em; color: rgba(0,0,0,0.55);
  padding: 0.25rem 0.5625rem; text-transform: uppercase;
}
.hm-sp-cat-body { padding: 1.75rem 1.375rem; }
.hm-sp-cat-headline {
  font-family: var(--font-display); font-size: 2.25rem;
  line-height: 0.95; color: #fff; margin-bottom: 0.5rem;
}
.hm-sp-cat-headline em { color: #FFCD11; font-style: normal; display: block; }
.hm-sp-cat-intro {
  font-size: 0.9375rem; line-height: 1.68;
  color: rgba(255,255,255,0.55); margin-bottom: 1.625rem;
}

/* Price card */
.hm-sp-price-card {
  background: rgba(255,205,17,0.06);
  border: 1px solid rgba(255,205,17,0.2);
  border-radius: 8px; padding: 1.125rem;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hm-sp-price-amount { flex-shrink: 0; text-align: center; }
.hm-sp-price-num {
  font-family: var(--font-display); font-size: 3rem;
  line-height: 1; color: #FFCD11; display: block;
}
.hm-sp-price-currency {
  font-family: var(--font-cond); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.12em; color: rgba(255,205,17,0.6);
}
.hm-sp-price-divider {
  width: 1px; background: rgba(255,205,17,0.15);
  align-self: stretch; flex-shrink: 0;
}
.hm-sp-price-title {
  font-family: var(--font-cond); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: #fff; margin-bottom: 0.25rem;
}
.hm-sp-price-desc {
  font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.5);
}
.hm-sp-price-tag {
  display: inline-block; margin-top: 0.5rem; margin-right: 0.375rem;
  background: rgba(255,205,17,0.12); color: #FFCD11;
  font-family: var(--font-cond); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.14em; padding: 3px 8px; border-radius: 2px;
  text-transform: uppercase;
}

/* Diag items */
.hm-sp-diag-items { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.375rem; }
.hm-sp-diag-item {
  display: flex; gap: 0.875rem; align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,205,17,0.1);
  border-radius: 7px; padding: 1rem;
  transition: border-color 0.3s;
}
.hm-sp-diag-item:hover { border-color: rgba(255,205,17,0.3); }
.hm-sp-diag-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0; border-radius: 6px;
  background: rgba(255,205,17,0.08); border: 1px solid rgba(255,205,17,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.125rem;
}
.hm-sp-diag-title {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 0.9375rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: #FFCD11; margin-bottom: 0.25rem;
}
.hm-sp-diag-desc {
  font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.5);
}
.hm-sp-diag-book {
  display: block; text-align: center; text-decoration: none;
  background: #FFCD11; color: #080806;
  font-family: var(--font-cond); font-weight: 900;
  font-size: 0.9375rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 1rem 1.5rem;
  border-radius: 4px; margin-bottom: 1.25rem;
  transition: opacity 0.2s;
}
.hm-sp-diag-book:hover { opacity: 0.85; color: #080806; }
.hm-sp-cat-disclaimer {
  font-size: 0.875rem; line-height: 1.55;
  color: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,205,17,0.08);
  padding-top: 1rem; font-style: italic;
}

/* Parts section */
.hm-sp-parts {
  padding: 4rem 1.5rem;
  background: var(--hm-black);
}
.hm-sp-parts-sub {
  font-size: 1.0625rem; color: var(--hm-muted);
  line-height: 1.65; margin-bottom: 2.25rem; max-width: 23rem;
}
.hm-sp-parts-cards { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 1.25rem; }
.hm-sp-part-card {
  background: var(--hm-panel); border: 1px solid var(--hm-steel);
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.3s;
}
.hm-sp-part-card:hover { border-color: rgba(255,85,0,0.3); }
.hm-sp-part-card-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--hm-orange), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.hm-sp-part-card:hover .hm-sp-part-card-bar { transform: scaleX(1); }
.hm-sp-part-card-inner { padding: 1.375rem 1.25rem; }
.hm-sp-part-card-head { display: flex; gap: 0.875rem; align-items: flex-start; margin-bottom: 0.875rem; }
.hm-sp-part-icon {
  width: 2.875rem; height: 2.875rem; flex-shrink: 0; border-radius: 7px;
  background: rgba(255,85,0,0.1); border: 1px solid rgba(255,85,0,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.375rem;
}
.hm-sp-part-title {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 1.125rem; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 0.125rem;
}
.hm-sp-part-badge {
  display: inline-block; font-family: var(--font-cond);
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.14em; padding: 2px 8px;
  border-radius: 2px; text-transform: uppercase;
}
.hm-sp-badge-fast { background: rgba(92,200,160,0.15); color: #5CC8A0; }
.hm-sp-badge-cat  { background: rgba(255,205,17,0.15); color: #FFCD11; }
.hm-sp-badge-sea  { background: rgba(102,153,255,0.15); color: #6699FF; }
.hm-sp-part-desc {
  font-size: 0.9375rem; line-height: 1.68;
  color: rgba(255,255,255,0.52); margin-bottom: 0.875rem;
}
.hm-sp-part-specs { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.hm-sp-pspec {
  font-family: var(--font-cond); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px;
  background: var(--hm-steel); color: rgba(255,255,255,0.5);
}
.hm-sp-pspec-green  { background: rgba(92,200,160,0.1); color: #5CC8A0; }
.hm-sp-pspec-orange { background: rgba(255,85,0,0.1); color: var(--hm-orange); }
.hm-sp-pspec-cat    { background: rgba(255,205,17,0.1); color: #FFCD11; }
.hm-sp-pspec-blue   { background: rgba(102,153,255,0.1); color: #6699FF; }

/* Delivery timeline */
.hm-sp-dtl {
  background: var(--hm-ink); border: 1px solid var(--hm-steel);
  border-radius: 8px; padding: 1.375rem 1.25rem; margin-top: 1.25rem;
}
.hm-sp-dtl-label {
  font-family: var(--font-cond); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--hm-muted);
  text-transform: uppercase; margin-bottom: 1.125rem;
}
.hm-sp-dtl-steps { display: flex; flex-direction: column; }
.hm-sp-dtl-step {
  display: flex; gap: 1rem; align-items: stretch;
  padding: 0.875rem 0; border-bottom: 1px solid var(--hm-steel);
}
.hm-sp-dtl-step:last-child { border-bottom: none; padding-bottom: 0; }
.hm-sp-dtl-left {
  display: flex; flex-direction: column;
  align-items: center; flex-shrink: 0;
}
.hm-sp-dtl-node {
  width: 1.875rem; height: 1.875rem; border-radius: 50%;
  border: 1.5px solid var(--hm-orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond); font-size: 0.875rem; font-weight: 700;
  color: var(--hm-orange); flex-shrink: 0;
}
.hm-sp-dtl-step:last-child .hm-sp-dtl-line { display: none; }
.hm-sp-dtl-body { padding-top: 3px; }
.hm-sp-dtl-time {
  font-family: var(--font-cond); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--hm-orange); margin-bottom: 2px;
}
.hm-sp-dtl-action {
  font-family: var(--font-cond); font-weight: 600;
  font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.hm-sp-dtl-note {
  font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-top: 2px;
}

/* Logistics */
.hm-sp-logistics {
  padding: 4rem 1.5rem;
  background: var(--hm-dark);
}
.hm-sp-log-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.875rem; margin-top: 2rem;
}
.hm-sp-log-cell {
  background: var(--hm-panel); border: 1px solid var(--hm-steel);
  border-radius: 8px; padding: 1.25rem 1rem;
  transition: border-color 0.3s;
}
.hm-sp-log-cell:hover { border-color: rgba(255,85,0,0.25); }
.hm-sp-log-icon { font-size: 1.375rem; margin-bottom: 0.75rem; }
.hm-sp-log-title {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 0.9375rem; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.hm-sp-log-desc {
  font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.48);
}

/* Partner strip */
.hm-sp-partner {
  padding: 3.25rem 1.5rem;
  background: var(--hm-ink);
  border-top: 1px solid var(--hm-steel);
  border-bottom: 1px solid var(--hm-steel);
}
.hm-sp-partner-card {
  background: var(--hm-panel); border: 1px solid var(--hm-steel);
  border-left: 3px solid var(--hm-orange); border-radius: 8px;
  padding: 1.625rem 1.375rem;
}
.hm-sp-partner-title {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 1.25rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--hm-cream); margin-bottom: 0.75rem;
}
.hm-sp-partner-text {
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,0.55); margin-bottom: 1rem;
}
.hm-sp-partner-sign {
  font-family: var(--font-cond); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.04em; color: var(--hm-orange);
}

/* Dual CTA */
.hm-sp-page-cta { padding: 4rem 1.5rem; background: var(--hm-black); }
.hm-sp-cta-stack { display: flex; flex-direction: column; gap: 1rem; }
.hm-sp-cta-urgent {
  background: #CC2200; border-radius: 12px;
  padding: 2rem 1.5rem; position: relative; overflow: hidden;
}
.hm-sp-cta-urgent::before {
  content: ''; position: absolute;
  top: -2.75rem; right: -2.75rem;
  width: 9rem; height: 9rem; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.hm-sp-cta-tag {
  font-family: var(--font-cond); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.hm-sp-cta-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #fff; animation: hmPulse 1s infinite;
}
.hm-sp-cta-h {
  font-family: var(--font-display); font-size: 2.5rem;
  line-height: 1; margin-bottom: 0.75rem;
}
.hm-sp-cta-p {
  font-size: 0.9375rem; line-height: 1.65;
  color: rgba(255,255,255,0.75); margin-bottom: 1.375rem;
}
.hm-sp-btn-white {
  display: inline-block; text-decoration: none;
  background: #fff; color: #CC2200;
  font-family: var(--font-cond); font-weight: 900;
  font-size: 0.875rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 1rem 1.375rem;
  border-radius: 4px; position: relative; z-index: 1;
}
.hm-sp-btn-white:hover { color: #CC2200; }
.hm-sp-cta-parts {
  background: var(--hm-panel); border: 1px solid var(--hm-steel);
  border-radius: 12px; padding: 1.75rem 1.5rem;
  position: relative; overflow: hidden;
}
.hm-sp-cta-parts::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--hm-orange), var(--hm-amber), transparent);
}
.hm-sp-cta-parts-tag {
  font-family: var(--font-cond); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--hm-muted); margin-bottom: 0.75rem;
}
.hm-sp-cta-parts-h {
  font-family: var(--font-display); font-size: 2rem;
  line-height: 1; margin-bottom: 0.625rem;
}
.hm-sp-cta-parts-h em { color: var(--hm-orange); font-style: normal; display: block; }
.hm-sp-cta-parts-p {
  font-size: 0.9375rem; line-height: 1.65;
  color: rgba(255,255,255,0.55); margin-bottom: 1.25rem;
}

/* ── SUPPORT PAGE RESPONSIVE ── */
@media screen and (max-width: 767px) {
  .hm-sp-log-grid { grid-template-columns: 1fr; }
  .hm-sp-cat-diag,
  .hm-sp-parts,
  .hm-sp-logistics,
  .hm-sp-page-cta { padding: 3.5rem 1.25rem; }
  .hm-sp-price-card { flex-direction: column; gap: 0.75rem; }
  .hm-sp-price-divider { display: none; }
}

/* ════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════ */

/* Journey strip */
.hm-sv-jstrip {
  background: var(--hm-panel);
  border-bottom: 1px solid var(--hm-steel);
  padding: 1.125rem 1.5rem;
  overflow-x: auto;
}
.hm-sv-jstrip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
}
.hm-sv-jstep {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.hm-sv-jstep-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--hm-orange);
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hm-sv-jstep-label {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  white-space: nowrap;
}
.hm-sv-jstep-arrow {
  font-size: 0.875rem;
  color: var(--hm-wire);
  margin: 0 0.75rem;
}

/* Stages section */
.hm-sv-stages {
  padding: 3rem 1.5rem 0;
  background: var(--hm-black);
}

/* Stage card */
.hm-sv-stage {
  margin-bottom: 1rem;
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}
.hm-sv-stage:hover { border-color: rgba(255,85,0,0.3); }

.hm-sv-stage-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hm-orange), var(--hm-amber), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.hm-sv-stage:hover .hm-sv-stage-accent { transform: scaleX(1); }

.hm-sv-stage-head {
  padding: 1.375rem 1.375rem 1.125rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--hm-steel);
}
.hm-sv-stage-num {
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 1;
  flex-shrink: 0;
  width: 3.25rem;
  text-align: center;
  color: rgba(255,85,0,0.2);
  transition: color 0.3s;
}
.hm-sv-stage:hover .hm-sv-stage-num { color: rgba(255,85,0,0.4); }

.hm-sv-stage-tag {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hm-muted);
  margin-bottom: 0.3rem;
}
.hm-sv-stage-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 0.95;
  color: #fff;
}
.hm-sv-stage-title em { color: var(--hm-orange); font-style: normal; display: block; }

/* Stage body */
.hm-sv-stage-body { padding: 1.25rem 1.375rem 1.375rem; }
.hm-sv-stage-desc {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
  margin-bottom: 1.125rem;
}

/* Detail rows */
.hm-sv-detail-rows { display: flex; flex-direction: column; }
.hm-sv-detail-row {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--hm-wire);
}
.hm-sv-detail-row:last-child { border-bottom: none; }
.hm-sv-detail-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(255,85,0,0.08);
  border: 1px solid rgba(255,85,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hm-sv-detail-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.hm-sv-detail-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
}

/* Stage callout */
.hm-sv-stage-callout {
  margin-top: 1rem;
  background: rgba(255,85,0,0.06);
  border: 1px solid rgba(255,85,0,0.15);
  border-radius: 6px;
  padding: 0.875rem 1rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.hm-sv-stage-callout em { color: var(--hm-orange); font-style: normal; }

/* CAT stage variant */
.hm-sv-stage--cat { border-color: rgba(255,205,17,0.2); }
.hm-sv-stage--cat:hover { border-color: rgba(255,205,17,0.4); }
.hm-sv-stage--cat .hm-sv-stage-accent {
  background: linear-gradient(90deg, #FFCD11, rgba(255,205,17,0.3), transparent);
}
.hm-sv-stage--cat .hm-sv-stage-num { color: rgba(255,205,17,0.2); }
.hm-sv-stage--cat:hover .hm-sv-stage-num { color: rgba(255,205,17,0.45); }
.hm-sv-stage--cat .hm-sv-detail-icon {
  background: rgba(255,205,17,0.08);
  border-color: rgba(255,205,17,0.18);
}
.hm-sv-em-cat { color: #FFCD11; font-style: normal; }
.hm-sv-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  margin-top: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
  background: rgba(255,205,17,0.12);
  color: #FFCD11;
  border: 1px solid rgba(255,205,17,0.2);
}
.hm-sv-callout--cat {
  background: rgba(255,205,17,0.05);
  border-color: rgba(255,205,17,0.15);
}
.hm-sv-callout--cat em { color: #FFCD11; }

/* Stage connector */
.hm-sv-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  position: relative;
  margin: 0 1.5rem;
}
.hm-sv-connector::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--hm-orange), transparent);
  opacity: 0.3;
}
.hm-sv-connector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hm-orange);
  z-index: 1;
  opacity: 0.5;
}

/* Journey summary */
.hm-sv-summary {
  padding: 4rem 1.5rem;
  background: var(--hm-dark);
}
.hm-sv-summary-sub {
  font-size: 1.0625rem;
  color: var(--hm-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 28rem;
}
.hm-sv-sumsteps { display: flex; flex-direction: column; }
.hm-sv-sumstep {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hm-steel);
}
.hm-sv-sumstep:last-child { border-bottom: none; }
.hm-sv-sumstep-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hm-sv-sumstep-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--hm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--hm-orange);
  flex-shrink: 0;
}
.hm-sv-sumstep-line {
  flex: 1;
  width: 1px;
  background: var(--hm-wire);
  margin-top: 4px;
  min-height: 10px;
}
.hm-sv-sumstep:last-child .hm-sv-sumstep-line { display: none; }
.hm-sv-sumstep-right { padding-top: 0.375rem; padding-left: 0.25rem; }
.hm-sv-sumstep-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.hm-sv-sumstep-note {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* CTA section */
.hm-sv-page-cta {
  padding: 4rem 1.5rem;
  background: var(--hm-ink);
}
.hm-sv-cta-inner {
  background: linear-gradient(135deg, var(--hm-orange) 0%, #C83D00 100%);
  border-radius: 12px;
  padding: 2.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hm-sv-cta-inner::before {
  content: '';
  position: absolute;
  top: -3rem; right: -3rem;
  width: 10rem; height: 10rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.hm-sv-cta-tag {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.hm-sv-cta-h {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 0.95;
  margin-bottom: 0.75rem;
}
.hm-sv-cta-p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.625rem;
  max-width: 22rem;
}
.hm-sv-btn-white {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background: #fff;
  color: var(--hm-orange);
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 0.9375rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.625rem;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.hm-sv-btn-white:hover { color: var(--hm-orange); }
.hm-sv-cta-note {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

/* ── SERVICES PAGE RESPONSIVE ── */
@media screen and (max-width: 767px) {
  .hm-sv-stages { padding: 2rem 1.25rem 0; }
  .hm-sv-stage-head { padding: 1.125rem 1.125rem 0.875rem; }
  .hm-sv-stage-body { padding: 1rem 1.125rem 1.125rem; }
  .hm-sv-summary,
  .hm-sv-page-cta { padding: 3.5rem 1.25rem; }
  .hm-sv-stage-num { font-size: 2.5rem; width: 2.5rem; }
  .hm-sv-sumstep { grid-template-columns: 3rem 1fr; }
}

/* ════════════════════════════════════════
   RENTALS PAGE
════════════════════════════════════════ */

/* Hero availability tag */
.hm-rt-avail-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.375rem;
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-radius: 4px;
  padding: 0.5rem 0.875rem;
}
.hm-rt-avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hm-orange);
  flex-shrink: 0;
  animation: hmBlink 2s infinite;
}
@keyframes hmBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Fleet brand strip */
.hm-rt-fleet-strip {
  background: var(--hm-panel);
  border-top: 1px solid var(--hm-steel);
  border-bottom: 1px solid var(--hm-steel);
  padding: 1.125rem 0;
}
.hm-rt-fleet-strip-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hm-rt-brand-badges { display: flex; gap: 0.625rem; align-items: center; }
.hm-rt-brand-badge {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.375rem 0.875rem;
  border-radius: 3px;
}
.hm-rt-badge-mke { background: #CC1B1B; color: #fff; }
.hm-rt-badge-cat { background: #FFCD11; color: #000; }
.hm-rt-fleet-label {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  color: var(--hm-muted);
  letter-spacing: 0.08em;
  border-left: 1px solid var(--hm-wire);
  padding-left: 1rem;
  flex: 1;
  line-height: 1.5;
}

/* Equipment section */
.hm-rt-equipment {
  padding: 4rem 1.5rem;
  background: var(--hm-dark);
}
.hm-rt-equip-sub {
  font-size: 1.0625rem;
  color: var(--hm-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 26rem;
}
.hm-rt-equip-cards { display: flex; flex-direction: column; gap: 0.875rem; }

/* Equipment card */
.hm-rt-equip-card {
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}
.hm-rt-equip-card:hover { border-color: rgba(255,85,0,0.35); }
.hm-rt-card-top {
  padding: 1.125rem 1.125rem 0.875rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.hm-rt-brand-tag {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
}
.hm-rt-brand-mke { background: #CC1B1B; color: #fff; }
.hm-rt-brand-cat { background: #FFCD11; color: #000; }
.hm-rt-equip-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.hm-rt-equip-model {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--hm-orange);
  text-transform: uppercase;
}
.hm-rt-card-body { padding: 0 1.125rem 1.125rem; }
.hm-rt-equip-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.52);
  margin-bottom: 0.875rem;
}
.hm-rt-equip-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.hm-rt-etag {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  background: var(--hm-steel);
  color: rgba(255,255,255,0.5);
}
.hm-rt-etag-orange { background: rgba(255,85,0,0.12); color: var(--hm-orange); }
.hm-rt-etag-red    { background: rgba(204,27,27,0.15); color: #FF6666; }
.hm-rt-etag-yellow { background: rgba(255,205,17,0.12); color: #FFCD11; }
.hm-rt-card-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--hm-orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.hm-rt-equip-card:hover .hm-rt-card-bar { transform: scaleX(1); }

/* Availability badge */
.hm-rt-avail-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.hm-rt-avail-ready   { background: rgba(92,200,160,0.15); color: #5CC8A0; border: 1px solid rgba(92,200,160,0.3); }
.hm-rt-avail-request { background: rgba(232,160,32,0.15); color: var(--hm-amber); border: 1px solid rgba(232,160,32,0.3); }

/* Delivery section */
.hm-rt-delivery {
  padding: 4rem 1.5rem;
  background: var(--hm-black);
}
.hm-rt-eu-note {
  background: rgba(255,205,17,0.06);
  border: 1px solid rgba(255,205,17,0.2);
  border-left: 3px solid #FFCD11;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}
.hm-rt-eu-note-label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFCD11;
  margin-bottom: 0.375rem;
}
.hm-rt-eu-note-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.hm-rt-delivery-sub {
  font-size: 1.0625rem;
  color: var(--hm-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 26rem;
}
.hm-rt-del-rows { display: flex; flex-direction: column; margin-bottom: 1.75rem; }
.hm-rt-del-row {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--hm-steel);
}
.hm-rt-del-row:last-child { border-bottom: none; }
.hm-rt-del-icon {
  width: 2.625rem;
  height: 2.625rem;
  flex-shrink: 0;
  border-radius: 7px;
  background: rgba(255,85,0,0.08);
  border: 1px solid rgba(255,85,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.hm-rt-del-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.hm-rt-del-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}
.hm-rt-del-callout {
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-left: 3px solid var(--hm-orange);
  border-radius: 8px;
  padding: 1.125rem 1.25rem;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  color: var(--hm-cream);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* Built for real jobsites */
.hm-rt-jobsites {
  padding: 4rem 1.5rem;
  background: var(--hm-ink);
}
.hm-rt-job-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 2rem;
}
.hm-rt-job-cell {
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  transition: border-color 0.3s;
}
.hm-rt-job-cell:hover { border-color: rgba(255,85,0,0.3); }
.hm-rt-job-icon { font-size: 1.375rem; margin-bottom: 0.625rem; }
.hm-rt-job-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.hm-rt-job-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.48);
}

/* Vending / On-site access */
.hm-rt-vending {
  padding: 4rem 1.5rem;
  background: var(--hm-dark);
}
.hm-rt-vending-card {
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}
.hm-rt-vending-top {
  background: linear-gradient(135deg, rgba(255,85,0,0.12) 0%, transparent 60%);
  border-bottom: 1px solid var(--hm-steel);
  padding: 1.5rem 1.375rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.hm-rt-vending-icon {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,85,0,0.12);
  border: 1px solid rgba(255,85,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.hm-rt-vending-label {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--hm-muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.hm-rt-vending-title {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.hm-rt-vending-body { padding: 1.375rem; }
.hm-rt-vending-desc {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.125rem;
}
.hm-rt-vpoints { display: flex; flex-direction: column; gap: 0.625rem; }
.hm-rt-vpoint {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}
.hm-rt-vpoint::before {
  content: '→';
  color: var(--hm-orange);
  font-family: var(--font-cond);
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA section */
.hm-rt-page-cta {
  padding: 4rem 1.5rem;
  background: var(--hm-black);
}
.hm-rt-cta-inner {
  background: linear-gradient(135deg, var(--hm-orange) 0%, #C83D00 100%);
  border-radius: 12px;
  padding: 2.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hm-rt-cta-inner::before {
  content: '';
  position: absolute;
  top: -3rem; right: -3rem;
  width: 10rem; height: 10rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.hm-rt-cta-tag {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.hm-rt-cta-h {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.hm-rt-cta-p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.625rem;
  max-width: 22rem;
}
.hm-rt-btn-white {
  display: inline-block;
  text-decoration: none;
  background: #fff;
  color: var(--hm-orange);
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 0.9375rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.625rem;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.hm-rt-btn-white:hover { color: var(--hm-orange); }
.hm-rt-cta-note {
  display: block;
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

/* ── RENTALS PAGE RESPONSIVE ── */
@media screen and (max-width: 767px) {
  .hm-rt-equipment,
  .hm-rt-delivery,
  .hm-rt-jobsites,
  .hm-rt-vending,
  .hm-rt-page-cta { padding: 3.5rem 1.25rem; }
  .hm-rt-job-grid { grid-template-columns: 1fr; }
  .hm-rt-fleet-strip-inner { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
  .hm-rt-fleet-label { border-left: none; padding-left: 0; border-top: 1px solid var(--hm-wire); padding-top: 0.875rem; }
}

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */

/* Shorter hero variant */
.hm-d-hero--short {
  min-height: 42svh;
  min-height: 42vh;
}

/* Contact section */
.hm-ct-section {
  padding: 4rem 1.5rem;
  background: var(--hm-black);
}
.hm-ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}

/* Info column */
.hm-ct-info-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--hm-cream);
  margin-top: 0.75rem;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}
.hm-ct-info-sub {
  font-size: 1.0625rem;
  color: var(--hm-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Contact cards */
.hm-ct-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
.hm-ct-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hm-steel);
}
.hm-ct-card:last-child { border-bottom: none; }
.hm-ct-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 7px;
  background: rgba(255,85,0,0.08);
  border: 1px solid rgba(255,85,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hm-ct-card-label {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hm-orange);
  margin-bottom: 0.2rem;
}
.hm-ct-card-value {
  font-size: 1rem;
  color: var(--hm-cream);
  line-height: 1.5;
}
.hm-ct-link {
  color: var(--hm-cream);
  text-decoration: none;
  transition: color 0.2s;
}
.hm-ct-link:hover { color: var(--hm-orange); }

/* What happens next */
.hm-ct-next {
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-left: 3px solid var(--hm-orange);
  border-radius: 8px;
  padding: 1.375rem 1.25rem;
}
.hm-ct-next-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hm-cream);
  margin-bottom: 1rem;
}
.hm-ct-next-steps { display: flex; flex-direction: column; gap: 0.75rem; }
.hm-ct-next-step {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.hm-ct-step-num {
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  border: 1.5px solid var(--hm-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--hm-orange);
  flex-shrink: 0;
}

/* Form column */
.hm-ct-form-wrap {
  background: var(--hm-panel);
  border: 1px solid var(--hm-steel);
  border-radius: 12px;
  overflow: hidden;
}
.hm-ct-form-header {
  padding: 1.625rem 1.75rem 1.375rem;
  border-bottom: 1px solid var(--hm-steel);
}
.hm-ct-form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--hm-cream);
  margin-bottom: 0.5rem;
}
.hm-ct-form-sub {
  font-size: 1rem;
  color: var(--hm-muted);
  line-height: 1.6;
}

/* CF7 form styling */
.hm-ct-form-wrap .wpcf7 {
  padding: 1.75rem;
}
.hm-ct-form-wrap .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.hm-ct-form-wrap .wpcf7 p {
  margin: 0;
}

/* Labels */
.hm-ct-form-wrap .wpcf7 label,
.hm-ct-form-wrap .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.hm-ct-form-wrap .wpcf7 label {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hm-muted);
  margin-bottom: 0.375rem;
  display: block;
}

/* Inputs & textarea */
.hm-ct-form-wrap .wpcf7 input[type="text"],
.hm-ct-form-wrap .wpcf7 input[type="email"],
.hm-ct-form-wrap .wpcf7 input[type="tel"],
.hm-ct-form-wrap .wpcf7 input[type="url"],
.hm-ct-form-wrap .wpcf7 input[type="number"],
.hm-ct-form-wrap .wpcf7 select,
.hm-ct-form-wrap .wpcf7 textarea {
  width: 100%;
  background: var(--hm-ink);
  border: 1px solid var(--hm-steel);
  border-radius: 4px;
  color: #fff;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body-hm), sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
  -webkit-appearance: none;
}
.hm-ct-form-wrap .wpcf7 input[type="text"]:focus,
.hm-ct-form-wrap .wpcf7 input[type="email"]:focus,
.hm-ct-form-wrap .wpcf7 input[type="tel"]:focus,
.hm-ct-form-wrap .wpcf7 input[type="url"]:focus,
.hm-ct-form-wrap .wpcf7 input[type="number"]:focus,
.hm-ct-form-wrap .wpcf7 select:focus,
.hm-ct-form-wrap .wpcf7 textarea:focus {
  border-color: var(--hm-orange);
  background: rgba(255,85,0,0.04);
}
.hm-ct-form-wrap .wpcf7 input::placeholder,
.hm-ct-form-wrap .wpcf7 textarea::placeholder {
  color: var(--hm-wire);
}
.hm-ct-form-wrap .wpcf7 textarea {
  min-height: 8rem;
}

/* Submit button */
.hm-ct-form-wrap .wpcf7 input[type="submit"] {
  display: inline-block;
  background: var(--hm-orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 0.9375rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
  width: auto;
}
.hm-ct-form-wrap .wpcf7 input[type="submit"]:hover {
  background: #e64a00;
}
.hm-ct-form-wrap .wpcf7 input[type="submit"]:active {
  transform: scale(0.98);
}

/* CF7 validation messages */
.hm-ct-form-wrap .wpcf7-not-valid-tip {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  color: #FF6666;
  margin-top: 0.25rem;
  display: block;
}
.hm-ct-form-wrap .wpcf7-response-output {
  font-family: var(--font-cond);
  font-size: 0.9375rem;
  border-radius: 4px;
  padding: 0.875rem 1rem;
  margin-top: 0;
  border: 1px solid;
}
.hm-ct-form-wrap .wpcf7 .wpcf7-mail-sent-ok {
  background: rgba(92,200,160,0.1);
  border-color: rgba(92,200,160,0.4);
  color: #5CC8A0;
}
.hm-ct-form-wrap .wpcf7 .wpcf7-mail-sent-ng,
.hm-ct-form-wrap .wpcf7 .wpcf7-validation-errors {
  background: rgba(255,85,0,0.08);
  border-color: rgba(255,85,0,0.3);
  color: var(--hm-orange);
}

/* ── CONTACT PAGE RESPONSIVE ── */
@media screen and (max-width: 900px) {
  .hm-ct-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .hm-ct-section { padding: 3.5rem 1.25rem; }
  .hm-d-hero--short { min-height: 36svh; min-height: 36vh; }
}
