@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.cb {
  clear: both;
}

.site-header {
  width: 100%;
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.65)
  );
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  overflow: visible;
}

.header-container {
  width: 100%;
  max-width: 1320px;
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-branding .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-branding .custom-logo {
  width: 230px;
  max-width: 230px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.site-branding .custom-logo-link:hover .custom-logo {
  transform: scale(0.96);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex: 1;
  min-width: 0;
}

.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .menu > li {
  position: relative;
}

.main-nav .menu > li > a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.main-nav .menu > li > a:hover {
  color: #c5df54;
}

.main-nav .menu-item-has-children > a::after {
  content: "▾";
  font-size: 10px;
  margin-left: 7px;
  color: #c5df54;
}

.main-nav .sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 220px;
  background: rgba(0, 0, 0, 0.94);
  border-top: 3px solid #c5df54;
  border-radius: 0 0 8px 8px;
  padding: 10px 0;
  margin: 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.main-nav .menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .sub-menu a {
  display: block;
  padding: 12px 18px;

  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;

  transition: all 0.3s ease;
}

.main-nav .sub-menu a:hover {
  background: rgba(197, 223, 84, 0.12);
  color: #c5df54;
}

.header-button {
  height: 46px;
  padding: 0 20px;
  border: 3px solid #c5df54;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;

  transition: all 0.3s ease;
}

.header-button i {
  font-size: 20px;
  color: #c5df54;
  transition: color 0.3s ease;
}

.header-button:hover {
  background: #c5df54;
  color: #000000;
}

.header-button:hover i {
  color: #000000;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;

  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  display: block;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  width: 100%;
  background: rgba(0, 0, 0, 0.96);
  padding: 24px;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 1000;
}

.site-header.menu-open .mobile-menu {
  display: block;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-list a {
  display: block;
  padding: 14px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}

.mobile-button {
  margin-top: 22px;
  height: 48px;
  border-radius: 8px;
  background: #c5df54;
  color: #000000;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.mobile-menu-list .sub-menu {
  display: none;
  padding-left: 16px;
}

.mobile-menu-list .menu-item-has-children.open > .sub-menu {
  display: block;
}

.mobile-menu-list .menu-item-has-children > a::after {
  content: "+";
  float: right;
  color: #c5df54;
  font-weight: 700;
}

.mobile-menu-list .menu-item-has-children.open > a::after {
  content: "-";
}

.hero-slider {
  width: 100%;
  height: 585px;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  width: 100%;
  height: 585px;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  position: absolute;
  top: 0;
  left: 0;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.15) 75%,
    rgba(0, 0, 0, 0.05) 100%
  );

  z-index: 1;
}

.hero-container {
  width: 100%;
  max-width: 1320px;
  height: 585px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
  transform: translateY(35px);
}

.hero-slider .hero-content,
.hero-slider .hero-content h1,
.hero-slider .hero-content h2,
.hero-slider .hero-content h3,
.hero-slider .hero-content p,
.hero-slider .hero-content span,
.hero-slider .hero-content div {
  color: #ffffff !important;
}

.hero-title {
  max-width: 620px;
  color: #fde8ef !important;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title span {
  display: block;
  color: #c5df54 !important;
}

.hero-text,
.hero-text p {
  max-width: 620px;
  color: #ffffff !important;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 400;
}

.hero-text {
  margin-top: 0 !important;
  margin-bottom: 34px !important;
}

.hero-text p {
  margin: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-button {
  height: 50px;
  padding: 0 32px;
  border-radius: 8px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;

  transition: all 0.3s ease;
}

.hero-button-outline {
  border: 3px solid #c5df54;
  color: #ffffff;
  background: transparent;
}

.hero-button-outline:hover {
  background: #c5df54;
  color: #000000;
}

.hero-button-fill {
  border: 3px solid #c5df54;
  background: #c5df54;
  color: #000000;
}

.hero-button-fill:hover {
  background: transparent;
  color: #ffffff;
}

.hero-button i {
  font-size: 20px;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border: 2px solid #c5df54;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #c5df54;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-arrow:hover {
  background: #c5df54;
  color: #000000;
}

.hero-arrow-prev {
  left: 32px;
}

.hero-arrow-next {
  right: 32px;
}

.hero-arrow i {
  font-size: 18px;
}

.site-footer {
  width: 100%;
  background: #07100b;
  padding: 70px 0 0;
}

.footer-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-column {
  flex: 1;
}

.footer-about {
  flex: 1.4;
}

.footer-nav,
.footer-contact,
.footer-newsletter {
  flex: 1;
}

.footer-logo {
  margin-bottom: 32px;
}

.footer-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo .custom-logo {
  width: 210px;
  max-width: 210px;
  height: auto;
  display: block;
}

.footer-description {
  max-width: 360px;
  color: #7f8d93;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(127, 141, 147, 0.5);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #7f8d93;
  font-size: 16px;

  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: #c5df54;
  color: #c5df54;
  transform: translateY(-3px);
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 24px;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 14px;
}

.footer-menu a {
  color: #7f8d93;
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #c5df54;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;

  color: #7f8d93;
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact-list i {
  width: 18px;
  margin-top: 3px;
  color: #c5df54;
  font-size: 15px;
  flex-shrink: 0;
}

.footer-contact-list a,
.footer-contact-list span {
  color: #7f8d93;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: #c5df54;
}

.footer-newsletter-text {
  color: #7f8d93;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-newsletter-form input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(127, 141, 147, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 16px;

  color: #ffffff;
  font-family: inherit;
  font-size: 14px;

  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter-form input::placeholder {
  color: #7f8d93;
}

.footer-newsletter-form input:focus {
  border-color: #c5df54;
  background: rgba(255, 255, 255, 0.07);
}

.footer-newsletter-form button {
  height: 46px;
  border: 3px solid #c5df54;
  border-radius: 8px;
  background: #c5df54;

  color: #000000;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;

  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
  background: transparent;
  color: #ffffff;
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;

  border-top: 1px solid rgba(127, 141, 147, 0.18);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  color: #7f8d93;
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a {
  color: #7f8d93;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #c5df54;
}

.footer-partner {
  color: #7f8d93;
  font-size: 14px;
  line-height: 1.5;
}

.footer-partner a {
  color: #c5df54;
  text-decoration: none;
}

.footer-partner a:hover {
  text-decoration: underline;
}

.section-title-highlight {
  text-align: center;
}

.section-title-highlight .elementor-heading-title {
  color: #000000;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title-highlight .elementor-heading-title span {
  color: #c5df54;
}

.title-orange-line .elementor-divider {
  padding: 0 !important;
}

.title-orange-line .elementor-divider-separator {
  width: 68px !important;
  border-top: 4px solid #d95d0f !important;
  margin: 12px auto 0 !important;
}

.solution-card {
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

.solution-img-box {
  width: 100% !important;
  height: 145px !important;
  overflow: hidden !important;
  border-radius: 10px 10px 0 0 !important;
  position: relative !important;
  flex-shrink: 0 !important;
}

.solution-img-box .elementor-widget,
.solution-img-box .elementor-widget-container {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.solution-img img {
  width: 100% !important;
  height: 145px !important;
  object-fit: cover !important;
  display: block !important;

  transform-origin: center center !important;
  transition: transform 0.5s ease !important;
}

.solution-card:hover .solution-img img {
  transform: scale(1.08) !important;
}

.solution-card .elementor-widget-container {
  box-sizing: border-box;
}

.solution-button {
  margin-top: auto !important;
}

.solution-button .elementor-button {
  background: #c5df54 !important;
  color: #000000 !important;
  border-radius: 6px !important;
  padding: 13px 28px !important;

  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: none !important;

  min-width: 142px;
  transition: all 0.3s ease;
}

.solution-button .elementor-button:hover {
  background: #ffffff !important;
  color: #000000 !important;
}

.steps-section {
  width: 100%;
  padding: 64px 0;
  background: #ffffff;
  position: relative;
  display: block !important;
}

.steps-slider {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.steps-slider::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: #cfcfcf;
  z-index: 1;
}

.step-item {
  width: 20% !important;
  flex: 0 0 20% !important;
  max-width: 20% !important;
  text-align: center;
  position: relative;
  z-index: 2;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.step-number .elementor-heading-title,
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #6f923f;
  color: #ffffff !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  margin: 0 auto 34px !important;
}

.step-icon .elementor-icon {
  color: #c5d600 !important;
  font-size: 46px;
  margin-bottom: 28px;
}

.step-icon .elementor-icon svg {
  fill: #c5d600 !important;
}

.step-title .elementor-heading-title {
  color: #111111 !important;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 12px !important;
}

.step-text {
  max-width: 180px;
  margin: 0 auto;
}

.step-text p {
  color: #333333 !important;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.steps-arrow {
  display: none;
}

.final-cta-section {
  width: 100%;
  min-height: 250px;
  position: relative;
  overflow: hidden;

  display: flex !important;
  align-items: center !important;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.68) 36%,
    rgba(0, 0, 0, 0.28) 72%,
    rgba(0, 0, 0, 0.18) 100%
  );

  z-index: 1;
}

.final-cta-container {
  width: 100%;
  max-width: 1320px;
  min-height: 250px;
  margin: 0 auto;
  padding: 0 24px;

  position: relative;
  z-index: 2;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

.final-cta-title .elementor-heading-title {
  color: #ffffff !important;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 12px !important;
}

.final-cta-title .elementor-heading-title span {
  color: #c5df54;
}

.final-cta-text,
.final-cta-text p {
  max-width: 520px;
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  margin: 0 0 24px !important;
}

.final-cta-actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
}

.final-cta-button .elementor-button {
  height: 42px;
  padding: 0 28px !important;
  border-radius: 7px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;

  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  text-decoration: none;

  transition: all 0.3s ease;
}

.final-cta-button-outline .elementor-button {
  background: transparent !important;
  border: 3px solid #c5df54 !important;
  color: #ffffff !important;
}

.final-cta-button-outline .elementor-button:hover {
  background: #c5df54 !important;
  color: #000000 !important;
}

.final-cta-button-fill .elementor-button {
  background: #c5df54 !important;
  border: 3px solid #c5df54 !important;
  color: #000000 !important;
}

.final-cta-button-fill .elementor-button:hover {
  background: transparent !important;
  color: #ffffff !important;
}

.internal-page-hero {
  width: 100%;
  background: #6f923f;
  padding: 108px 0 32px;
}

.internal-page-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.internal-page-container h1 {
  color: #fde8ef;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0;
}

.internal-page-content {
  width: 100%;
}

.solution-hero {
  width: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;

  display: flex !important;
  align-items: center !important;
}

.solution-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.68) 35%,
    rgba(0, 0, 0, 0.28) 70%,
    rgba(0, 0, 0, 0.12) 100%
  );

  z-index: 1;
}

.solution-hero-container {
  width: 100%;
  max-width: 1320px;
  min-height: 380px;
  margin: 0 auto;
  padding: 0 24px;

  position: relative;
  z-index: 2;

  display: flex !important;
  align-items: center !important;
}

.solution-hero-content {
  max-width: 560px;
}

.solution-hero-title .elementor-heading-title {
  color: #ffffff !important;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 18px !important;
}

.solution-hero-text,
.solution-hero-text p {
  color: #ffffff !important;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  margin: 0 0 16px !important;
}

.industrial-portfolio-section {
  display: block !important;
}

.industrial-portfolio-title .elementor-heading-title {
  color: #111111 !important;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 !important;
}

.industrial-portfolio-line .elementor-divider {
  padding: 0 !important;
}

.industrial-portfolio-line .elementor-divider-separator {
  width: 58px !important;
  border-top: 4px solid #6f923f !important;
  margin: 10px auto 16px !important;
}

.industrial-portfolio-subtitle,
.industrial-portfolio-subtitle p {
  color: #666666 !important;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 !important;
  text-align: center;
}

.industrial-portfolio-grid {
  width: 100%;
  margin-top: 34px;

  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 18px !important;
}

.industrial-portfolio-card {
  width: calc(33.333% - 12px) !important;
  flex: 0 0 calc(33.333% - 12px) !important;

  border-radius: 20px !important;
  overflow: hidden !important;
  background: #6f923f;
  display: flex !important;
  flex-direction: column !important;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industrial-portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.industrial-portfolio-caption {
  min-height: 58px;
  background: #4f7837;

  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;

  padding: 12px 18px;
}

.industrial-portfolio-icon .elementor-icon {
  color: #ffffff !important;
  font-size: 24px;
}

.industrial-portfolio-icon .elementor-icon svg {
  fill: #ffffff !important;
}

.industrial-portfolio-card-title .elementor-heading-title {
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 !important;
}

.industrial-portfolio-image {
  width: 100% !important;
  height: 210px !important;
  overflow: hidden !important;
  position: relative !important;
  flex-shrink: 0 !important;
}

.industrial-portfolio-image .elementor-widget,
.industrial-portfolio-image .elementor-widget-container {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.industrial-portfolio-image img {
  width: 100% !important;
  height: 210px !important;
  object-fit: cover !important;
  display: block !important;

  transform-origin: center center !important;
  transition: transform 0.5s ease !important;
}

.industrial-portfolio-card:hover .industrial-portfolio-image img {
  transform: scale(1.08) !important;
}

.industrial-form-section {
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
}

.industrial-form-left {
  flex: 0 0 38%;
}

.industrial-form-right {
  flex: 1;
}

.industrial-form-title .elementor-heading-title {
  color: #111111 !important;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 !important;
}

.industrial-form-line .elementor-divider {
  padding: 0 !important;
}

.industrial-form-line .elementor-divider-separator {
  width: 58px !important;
  border-top: 4px solid #6f923f !important;
  margin: 12px 0 22px !important;
}

.industrial-form-benefits .elementor-icon-list-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industrial-form-benefits .elementor-icon-list-icon i,
.industrial-form-benefits .elementor-icon-list-icon svg {
  color: #6f923f !important;
  fill: #6f923f !important;
}

.industrial-form-benefits .elementor-icon-list-text {
  color: #333333 !important;
  font-size: 14px;
  line-height: 1.4;
}

.industrial-form-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 32px!important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.cf7-industrial-form {
  width: 100%;
}

.cf7-row {
  display: flex;
  gap: 18px;
}

.cf7-field {
  width: 100%;
  margin-bottom: 10px;
}

.cf7-field label {
  display: block;
  color: #333333;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cf7-field input,
.cf7-field textarea {
  width: 100%;
  height: 42px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  background: #ffffff;
  padding: 0 14px;

  color: #333333;
  font-family: inherit;
  font-size: 14px;

  outline: none;
  transition: all 0.3s ease;
}

.cf7-field textarea {
  height: 74px;
  padding: 12px 14px;
  resize: vertical;
}

.cf7-field input:focus,
.cf7-field textarea:focus {
  border-color: #6f923f;
  box-shadow: 0 0 0 3px rgba(111, 146, 63, 0.12);
}

.cf7-submit input {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 5px;
  background: #6f923f;

  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;

  cursor: pointer;
  transition: all 0.3s ease;
}

.cf7-submit input:hover {
  background: #587733;
}

.wpcf7 p {
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

.cf7-industrial-form .cf7-field {
  margin-bottom: 14px !important;
}

.cf7-industrial-form .cf7-field label {
  display: block !important;
  margin: 0 0 6px 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

.cf7-industrial-form .wpcf7-form-control-wrap {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cf7-industrial-form input,
.cf7-industrial-form textarea {
  margin: 0 !important;
}

.cf7-industrial-form p {
  margin: 0 !important;
  padding: 0 !important;
}

.cf7-industrial-form br {
  display: none !important;
}

html {
  scroll-padding-top: 90px;
}

.contact-hero {
  width: 100%;
  min-height: 320px;
  position: relative;
  overflow: hidden;

  display: flex !important;
  align-items: center !important;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(61, 87, 37, 0.96) 0%,
    rgba(61, 87, 37, 0.82) 34%,
    rgba(61, 87, 37, 0.48) 66%,
    rgba(61, 87, 37, 0.22) 100%
  );

  z-index: 1;
}

.contact-hero-container {
  width: 100%;
  max-width: 1320px;
  min-height: 320px;
  margin: 0 auto;
  padding: 0 24px;

  position: relative;
  z-index: 2;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

.contact-hero-title .elementor-heading-title {
  color: #ffffff !important;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 !important;
}

.contact-hero-line .elementor-divider {
  padding: 0 !important;
}

.contact-hero-line .elementor-divider-separator {
  width: 50px !important;
  border-top: 4px solid #d95d0f !important;
  margin: 18px 0 22px !important;
}

.contact-hero-text,
.contact-hero-text p {
  max-width: 460px;
  color: #ffffff !important;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  margin: 0 !important;
}

.contact-page-section {
  display: flex !important;
  align-items: center !important;
  gap: 60px !important;
}

.contact-page-info {
  flex: 0 0 36%;
}

.contact-page-form {
  flex: 1;
}

.contact-page-title .elementor-heading-title {
  color: #111111 !important;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 !important;
}

.contact-page-line .elementor-divider {
  padding: 0 !important;
}

.contact-page-line .elementor-divider-separator {
  width: 50px !important;
  border-top: 4px solid #d95d0f !important;
  margin: 16px 0 24px !important;
}

.contact-page-description,
.contact-page-description p {
  color: #444444 !important;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 34px !important;
}

.contact-info-item {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  margin-bottom: 24px !important;
}

.contact-info-icon .elementor-icon {
  width: 58px;
  height: 58px;
  border: 2px solid #6f923f;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #6f923f !important;
  font-size: 25px;
}

.contact-info-icon .elementor-icon svg {
  fill: #6f923f !important;
}

.contact-info-label .elementor-heading-title {
  color: #777777 !important;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 4px !important;
}

.contact-info-value,
.contact-info-value p,
.contact-info-value .elementor-heading-title {
  color: #111111 !important;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  margin: 0 !important;
}

.contact-page-sketch {
  margin-top: 24px;
  opacity: 0.35;
}

.contact-page-sketch img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

.contact-hero {
  min-height: 390px;
}

.contact-hero-container {
  min-height: 390px;
  padding-top: 80px !important;
}

/* Newsletter - Contact Form 7 */
.footer-newsletter-form {
  width: 100%;
  max-width: 246px;
}

/* Remove espaços extras que o Contact Form 7 cria */
.footer-newsletter-form p {
  margin: 0;
}

/* Input */
.footer-newsletter-form input[type="email"] {
  width: 100%;
  height: 46px;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 7px;
  color: #ffffff;
  padding: 0 16px;
  font-size: 14px;
}

/* Placeholder */
.footer-newsletter-form input[type="email"]::placeholder {
  color: #8ca0a3;
}

/* Botão do mesmo tamanho do input */
.footer-newsletter-form button,
.footer-newsletter-form input[type="submit"] {
  width: 100%;
  height: 46px;
  box-sizing: border-box;
  margin-top: 12px;
  background: #d8ff4f;
  border: 1px solid #ffffff;
  border-radius: 8px;
  color: #000000;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
}

/* Hover do botão */
.footer-newsletter-form button:hover,
.footer-newsletter-form input[type="submit"]:hover {
  background: #c8f03f;
}

/* Mensagem de retorno do Contact Form 7 */
.wpcf7 form .wpcf7-response-output {
  margin: 18px 0 0 0;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  color: #d8ff4f;
  border: 1px solid #d8ff4f;
}

/* Mensagem de sucesso */
.wpcf7 form.sent .wpcf7-response-output {
  color: #d8ff4f;
  border-color: #d8ff4f;
}

/* Mensagem de erro */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  color: #ff6b6b;
  border-color: #ff6b6b;
}

@media (min-width: 992px) and (max-width: 1199px) {

  .header-container {
    padding: 0 18px;
    gap: 18px;
  }

  .site-branding .custom-logo {
    width: 190px;
    max-width: 190px;
  }

  .main-nav .menu {
    gap: 18px;
  }

  .main-nav .menu > li > a {
    font-size: 14px;
  }

  .header-button {
    height: 42px;
    padding: 0 14px;
    font-size: 11px;
  }

  .header-button i {
    font-size: 18px;
  }

  .hero-slider,
  .hero-slide {
    height: 540px;
  }

  .hero-container {
    height: 540px;
  }

  .hero-content {
    max-width: 560px;
    transform: translateY(30px);
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-text,
  .hero-text p {
    font-size: 21px;
  }

  .hero-text {
    margin-bottom: 40px !important;
  }

  .hero-button {
    height: 46px;
    padding: 0 24px;
    font-size: 12px;
  }
}

@media (max-width: 991px) {

  .site-header {
    height: 80px;
  }

  .header-container {
    height: 80px;
    padding: 0 20px;
  }

  .site-branding .custom-logo {
    width: 190px;
    max-width: 190px;
  }

  .main-nav,
  .header-button {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    width: 100%;
  }

  .hero-slider,
  .hero-slide {
    height: 560px;
  }

  .hero-container {
    height: 560px;
    padding: 0 20px;
  }

  .hero-content {
    max-width: 560px;
    transform: translateY(35px);
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-text,
  .hero-text p {
    font-size: 21px;
  }

  .hero-text {
    margin-bottom: 36px !important;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-button {
    height: 46px;
    padding: 0 24px;
    font-size: 12px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow-prev {
    left: 16px;
  }

  .hero-arrow-next {
    right: 16px;
  }

  .site-footer {
    padding: 56px 0 0;
  }

  .footer-main {
    flex-wrap: wrap;
    gap: 42px;
  }

  .footer-column,
  .footer-about {
    flex: 0 0 calc(50% - 21px);
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-newsletter-form {
    max-width: 360px;
  }

  .final-cta-section {
    min-height: 320px;
    background-position: center center !important;
  }

  .final-cta-container {
    min-height: 320px;
  }

  .final-cta-title .elementor-heading-title {
    font-size: 25px;
  }

  .final-cta-text,
  .final-cta-text p {
    font-size: 17px;
    max-width: 460px;
  }

   .solution-hero {
    min-height: 420px;
    background-position: center center !important;
  }

  .solution-hero-container {
    min-height: 420px;
  }

  .solution-hero-title .elementor-heading-title {
    font-size: 25px;
  }

  .solution-hero-content {
    max-width: 520px;
  }

   .industrial-portfolio-card {
    width: calc(50% - 9px) !important;
    flex: 0 0 calc(50% - 9px) !important;
  }

  .industrial-portfolio-image,
  .industrial-portfolio-image img {
    height: 200px !important;
  }

  .industrial-form-section {
    flex-direction: column !important;
    gap: 42px !important;
  }

  .industrial-form-left,
  .industrial-form-right {
    width: 100%;
    flex: 0 0 100%;
  }

  .industrial-form-box {
    width: 100%;
  }
}

@media (max-width: 575px) {

  .site-header {
    height: 74px;
  }

  .header-container {
    height: 74px;
    padding: 0 18px;
  }

  .site-branding .custom-logo {
    width: 165px;
    max-width: 165px;
  }

  .menu-toggle {
    width: 32px;
    height: 24px;
  }

  .mobile-menu {
    top: 74px;
    padding: 20px 18px;
  }

  .mobile-menu-list a {
    font-size: 15px;
    padding: 13px 0;
  }

  .mobile-button {
    height: 46px;
    font-size: 12px;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }

  .hero-slider,
  .hero-slide {
    width: 100%;
    height: 560px;
  }

  .hero-container {
    width: 100%;
    height: 560px;
    padding: 0 20px;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    transform: translateY(35px);
  }

  .hero-title {
    font-size: 29px;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .hero-text,
  .hero-text p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.35;
  }

  .hero-text {
    margin-bottom: 26px !important;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-button {
    width: 100%;
    max-width: none;
    height: 46px;
    padding: 0 16px;
    font-size: 11px;
  }

  .hero-button i {
    font-size: 18px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .hero-arrow-prev {
    left: 12px;
  }

  .hero-arrow-next {
    right: 12px;
  }

  .hero-arrow i {
    font-size: 14px;
  }

  .site-footer {
    padding: 48px 0 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-main {
    flex-direction: column;
    gap: 38px;
  }

  .footer-column,
  .footer-about,
  .footer-nav,
  .footer-contact,
  .footer-newsletter {
    flex: 0 0 100%;
  }

  .footer-logo {
    margin-bottom: 24px;
  }

  .footer-logo .custom-logo {
    width: 175px;
    max-width: 175px;
  }

  .footer-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .footer-title {
    margin-bottom: 18px;
  }

  .footer-bottom {
    margin-top: 44px;
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .steps-section {
    display: block !important;
    padding: 48px 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .steps-viewport {
    width: 100% !important;
    overflow: hidden !important;
  }

  .steps-slider {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }

  .steps-slider::before {
    display: none !important;
  }

  .steps-slider .step-item {
    display: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    flex: none !important;
    padding: 0 44px !important;
    text-align: center !important;
  }

  .steps-slider .step-item.step-active {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .step-number .elementor-heading-title {
    margin: 0 auto 26px !important;
  }

  .step-icon .elementor-icon {
    margin-bottom: 24px !important;
  }

  .step-title .elementor-heading-title {
    text-align: center !important;
  }

  .step-text {
    max-width: 240px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .step-text p {
    text-align: center !important;
  }

  .steps-arrow {
    width: 38px !important;
    height: 38px !important;
    border: 2px solid #6f923f !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #6f923f !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;

    cursor: pointer !important;
  }

  .steps-arrow-prev {
    left: 14px !important;
  }

  .steps-arrow-next {
    right: 14px !important;
  }

  .steps-arrow .elementor-icon {
    color: #6f923f !important;
    font-size: 16px !important;
  }

  .steps-arrow i,
  .steps-arrow svg {
    color: #6f923f !important;
    fill: #6f923f !important;
  }

  .steps-slider.slide-next .step-item.step-active {
    animation: stepSlideNext 0.38s ease forwards;
  }

  .steps-slider.slide-prev .step-item.step-active {
    animation: stepSlidePrev 0.38s ease forwards;
  }

  @keyframes stepSlideNext {
    from {
      opacity: 0;
      transform: translateX(32px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes stepSlidePrev {
    from {
      opacity: 0;
      transform: translateX(-32px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .final-cta-section {
    min-height: 430px;
    background-position: center center !important;
  }

  .final-cta-section::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.72) 46%,
      rgba(0, 0, 0, 0.45) 100%
    );
  }

  .final-cta-container {
    min-height: 430px;
    padding: 0 20px;
    align-items: flex-start !important;
  }

  .final-cta-title .elementor-heading-title {
    font-size: 24px;
    line-height: 1.18;
  }

  .final-cta-text,
  .final-cta-text p {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 22px !important;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .final-cta-button,
  .final-cta-button .elementor-button {
    width: 100%;
  }

   .internal-page-hero {
    padding: 96px 0 28px;
  }

  .internal-page-container {
    padding: 0 20px;
  }

  .internal-page-container h1 {
    font-size: 24px;
  }

   .solution-hero {
    min-height: 480px;
    background-position: center center !important;
  }

  .solution-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.72) 52%,
      rgba(0, 0, 0, 0.46) 100%
    );
  }

  .solution-hero-container {
    min-height: 480px;
    padding: 0 20px;
  }

  .solution-hero-content {
    max-width: 100%;
  }

  .solution-hero-title .elementor-heading-title {
    font-size: 23px;
    line-height: 1.18;
  }

  .solution-hero-text,
  .solution-hero-text p {
    font-size: 15px;
    line-height: 1.55;
  }

  .industrial-portfolio-title .elementor-heading-title {
    font-size: 23px;
  }

  .industrial-portfolio-grid {
    gap: 20px !important;
  }

  .industrial-portfolio-card {
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  .industrial-portfolio-image,
  .industrial-portfolio-image img {
    height: 210px !important;
  }

  .industrial-portfolio-caption {
    min-height: 58px;
  }

  .industrial-portfolio-card-title .elementor-heading-title {
    font-size: 17px;
  }

   .industrial-form-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .industrial-form-title .elementor-heading-title {
    font-size: 24px;
  }

  .cf7-row {
    flex-direction: column;
    gap: 0;
  }

  .industrial-form-box {
    padding: 22px 18px;
  }

  .cf7-field input,
  .cf7-field textarea {
    font-size: 13px;
  }

   html {
    scroll-padding-top: 84px;
  }

  .contact-hero {
    min-height: 360px;
    background-position: center center !important;
  }

  .contact-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(61, 87, 37, 0.94) 0%,
      rgba(61, 87, 37, 0.78) 58%,
      rgba(61, 87, 37, 0.48) 100%
    );
  }

  .contact-hero-container {
    min-height: 360px;
    padding: 0 20px;
  }

  .contact-hero-title .elementor-heading-title {
    font-size: 34px;
  }

  .contact-hero-text,
  .contact-hero-text p {
    font-size: 16px;
    max-width: 100%;
  }
}
