@import url("https://p.typekit.net/p.css?s=1&k=zkm3kla&ht=tk&f=24737.24744&a=62697238&app=typekit&e=css");

:root {
  --color-primary: #e53935;
  --color-secondary: #282828;
  --color-accent: #fbc02d;
  --color-bg: #fff;
  --color-text: #222;
  --color-muted: #888;
  --font-base: "scandia-web", sans-serif;
  --font-heading: "scandia-web", sans-serif;
  --font-size-base: calc(1rem + 0.2vw);
  --font-size-lg: calc(1.5rem + 0.5vw);
  --font-size-sm: calc(0.9rem + 0.1vw);
  --space-xs: calc(0.5rem + 0.2vw);
  --space-sm: calc(1rem + 0.3vw);
  --space-md: calc(2rem + 0.5vw);
  --space-lg: calc(3rem + 1vw);
  --radius: 6px;
  --breakpoint-lg: 1000px;
  
  /* ENHANCED FLUID CONTAINER SYSTEM */
  --container-width: calc(100% - 120px); /* 60px padding on each side */
  --container-max-width: clamp(1200px, 90vw, 1800px); /* Fluid max-width with constraints */
  
  /* ULTRA-WIDE SCREEN VARIABLES */
  --ultra-wide-container-max: clamp(1400px, 85vw, 2400px);
  --ultra-wide-spacing-base: clamp(1rem, 1rem + 0.5vw, 2rem);
  --ultra-wide-spacing-large: clamp(2rem, 2rem + 1vw, 4rem);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-base);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

body {
  line-height: 1.6;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-secondary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 2.5rem + 1vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 2rem + 0.7vw, 3.2rem);
}

h3 {
  font-size: clamp(1.5rem, 1.5rem + 0.5vw, 2.4rem);
}

h4 {
  font-size: clamp(1.2rem, 1.2rem + 0.3vw, 1.8rem);
}

h5, h6 {
  font-size: var(--font-size-base);
}

p {
  margin: 0 0 var(--space-sm) 0;
  color: var(--color-text);
  font-size: var(--font-size-base);
  font-weight: 400;
  font-style: normal;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.section__title {
  font-size: clamp(2rem, 2rem + 0.5vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

section {
  padding: clamp(2rem, 2rem + 2vw, 5rem) 0;
}

button, .button {
  display: inline-block;
  padding: clamp(0.75rem, 0.75rem + 0.2vw, 1.2rem) clamp(2rem, 2rem + 0.5vw, 3rem);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.08);
}
button:hover, button:focus, .button:hover, .button:focus {
  background: var(--color-secondary);
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.12);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header {
  background-color: #1E1E1E;
  color: #fff;
  position: sticky;
  top: 20px;
  z-index: 100;
  width: 95%;
  height: 72px;
  display: flex;
  align-items: center;
  margin: 10px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Fix header width on mobile to prevent horizontal overflow */
@media (max-width: 767px) {
  .header {
    width: calc(100% - 20px);
    margin: 10px 10px;
    max-width: calc(100vw - 20px);
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo {
  height: 37px;
  width: auto;
}

.header__nav {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}

.header__nav-item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.header__nav-item:hover::after, .header__nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
}

.header__mobile-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
}


.header__nav-link {
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header__nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.header__nav-item.active .header__nav-link {
  color: var(--color-primary);
}
.header__mobile-item.active .header__mobile-link {
  color: var(--color-primary);
}

/* Dropdown Styling */
.header__nav-item--has-dropdown {
  position: relative;
}

.header__dropdown-toggle {
  position: relative;
  padding-right: 28px; /* Extra space for dropdown icon */
}

.header__dropdown-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  display: inline-block;
}

.header__dropdown-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
  transition: transform 0.2s ease;
}

.header__dropdown-toggle[aria-expanded="true"] .header__dropdown-icon::after {
  transform: rotate(180deg);
}

.header__dropdown-container {
  position: absolute;
  top: 72px;
  left: 0;
  width: 240px;
  background-color: #262626;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 10;
}

.header__nav-item--has-dropdown:hover .header__dropdown-container,
.header__dropdown-toggle[aria-expanded="true"] + .header__dropdown-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.header__dropdown-item {
  padding: 0;
  margin: 0;
}

.header__dropdown-item:hover {
  background-color: #333;
}

.header__dropdown-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 20px;
  display: block;
  transition: color 0.2s ease;
}

.header__dropdown-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.header__contact-us-btn {
  background-color: var(--color-primary);
  color: #fff;
  padding: 8px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.2s ease;
}
.header__contact-us-btn:hover {
  background-color: rgb(204.6578947368, 30.3947368421, 26.3421052632);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 992px) {
  .header__contact-us-btn {
    display: none;
  }
}

.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  position: relative;
}
@media (max-width: 992px) {
  .header__menu-toggle {
    display: block;
  }
}

.header__menu-icon {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.header__menu-icon::before, .header__menu-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.header__menu-icon::before {
  top: -8px;
}
.header__menu-icon::after {
  top: 8px;
}

.header__menu-toggle[aria-expanded=true] .header__menu-icon {
  background-color: transparent;
}
.header__menu-toggle[aria-expanded=true] .header__menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.header__menu-toggle[aria-expanded=true] .header__menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.header__mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background-color: #1E1E1E;
  padding: 20px 0;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}
.header__mobile-menu[aria-hidden=false] {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header__mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__mobile-item {
  margin-bottom: 16px;
}
.header__mobile-item:last-child {
  margin-bottom: 0;
}

.header__mobile-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header__mobile-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

@media (min-width: 1199px) and (max-width: 1399px ){
  .header__dropdown-icon{
    right: 4px !important;
  }
}

/*
document.addEventListener('DOMContentLoaded', function() {
  const menuToggle = document.querySelector('.header__menu-toggle');
  const mobileMenu = document.querySelector('.header__mobile-menu');

  menuToggle.addEventListener('click', function() {
    const expanded = this.getAttribute('aria-expanded') === 'true';
    this.setAttribute('aria-expanded', !expanded);
    mobileMenu.setAttribute('aria-hidden', expanded);
  });
});
*/

.footer {
  background: #232323;
  color: #fff;
  font-family: "Jost", Arial, Helvetica, sans-serif;
  padding: 0;
  letter-spacing: 0.01em;
}
.footer__main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3vw;
  padding: 64px 5vw 32px 5vw;
  width: 100%;
}
.footer__brand {
  flex: 1 1 45vw;
  min-width: 340px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__logo {
  width: 230px;
  margin-bottom: 25px;
}

.footer__divider-svg {
  width: 100px;
  margin-bottom: 20px;
}
.footer__tagline {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer__divider {
  width: 80px;
  height: 8px;
  background: none;
  border-bottom: 4px solid #ff4747;
  position: relative;
  margin-bottom: 24px;
}
.footer__divider::after {
  content: "";
  display: block;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #ff4747;
  border-radius: 2px;
}
.footer__divider-svg {
  margin-bottom: 24px;
  display: block;
}
.footer__desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 35px;
  color: #e0e0e0;
}
.footer__contact {
  display: flex;
  flex-direction: row;
  gap: 40px;
  font-size: 0.95rem;
  margin-bottom: 24px;
  color: #fff;
}
.footer__contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__contact a:hover {
  color: #ff4747;
}
.footer__social {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.footer__social .footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 15%;
  /* background: #fff; */
  transition: background 0.2s;
}
.footer__social .footer__social-link svg {
  display: block;
  width: 40px;
  height: 40px;
}
.footer__links {
  display: flex;
  flex: 1 1 45vw;
  gap: 3vw;
  justify-content: flex-end;
  align-items: flex-start;
}
.footer__col {
  display: flex;
  flex-direction: column;
  min-width: 140px;
  gap: 5px;
}
.footer__col-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fff;
}
.footer__link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 2px;
  transition: color 0.2s;
}
.footer__link:hover {
  color: #ff4747;
}
.footer__link--about-us {
  font-weight: 600;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5vw 8px 5vw;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  background: #232323;
  color: #e0e0e0;
}
.footer__bottom .footer__credit--bold {
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1000px) {
  .footer__main {
    flex-direction: column;
    gap: 40px;
    padding: 40px 5vw 24px 5vw;
  }
  .footer__links {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .footer__brand {
    max-width: 100%;
  }
  .footer__contact {
    flex-direction: column;
    gap: 16px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    padding: 16px 5vw 8px 5vw;
    font-size: 0.9rem;
  }
}

.section {
  padding: var(--space-md) 0;
}

.section--alt {
  background: #f8f8f8;
}

.container {
  max-width: var(--container-max-width);
  width: var(--container-width);
  margin: 0 auto;
  padding: 0;
}

.section__content {
  max-width: var(--container-max-width);
  width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: #fff;
  border-radius: var(--radius);
  /* box-shadow: 0 2px 12px rgba(34, 34, 34, 0.08); */
  /* padding: var(--space-md); */
}

.form__label {
  font-weight: 600;
  color: var(--color-secondary);
}

.form__input, .form__textarea {
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: var(--font-size-base);
  transition: border 0.2s;
}
.form__input:focus, .form__textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}

.form__button {
  align-self: flex-end;
}

.estimator-cta {
  background: var(--color-secondary);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.estimator-cta__container {
  width: var(--container-width);
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 0 8%;
}

.estimator-cta__content {
  width: 69%;
  text-align: left;
  position: relative;
  z-index: 5;
}

/* Desktop-only: Increase width to prevent title from breaking into too many lines */
@media (min-width: 1024px) {
  .estimator-cta .estimator-cta__content {
    width: 82%;
  }
}

.estimator-cta__title {
  font-size: calc(1.8rem + 0.7vw);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  color: #fff;
}
.estimator-cta__desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px !important;
  color: #fff;
}

.estimator-cta__corner-svg {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  vertical-align: top;
}

.estimator-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  min-width: 180px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 0;
  background: var(--color-primary);
  margin-top: 5px;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.estimator-cta__button:hover {
  background: #fff;
  color: var(--color-primary);
}

.estimator-cta__button:hover .estimator-cta__button-arrow img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(82%) saturate(3718%) hue-rotate(343deg) brightness(87%) contrast(92%);
}

.estimator-cta__button-arrow {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
}

.estimator-cta__button-arrow img {
  width: clamp(24px, 1.8vw, 32px) !important;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.estimator-cta__image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 45%;
  z-index: 1;
  overflow: hidden;
}

/* Fix estimator CTA image on mobile to prevent horizontal overflow */
@media (max-width: 767px) {
  .estimator-cta__image {
    width: 100%;
    right: 0;
    overflow: hidden;
  }
}

.estimator-cta__svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
}

/* Fix estimator CTA SVG on mobile to prevent horizontal overflow */
@media (max-width: 767px) {
  .estimator-cta__svg {
    max-width: 100%;
    right: 0;
  }
}

.products-demand {  
  background: #fff;  
  padding: clamp(60px, 4vw, 100px) 0;  
  overflow: hidden;  
  position: relative;
}

.products-demand .container {
  max-width: var(--container-max-width);
  width: var(--container-width);
  margin: 0 0 0 clamp(2rem, 8vw, 8rem);
  padding: 0;
}

.products-demand__title {  
  font-size: clamp(1.8rem, 1.8rem + 0.5vw, 2.5rem);  
  font-weight: 700;  
  line-height: 1.3;  
  margin-bottom: clamp(40px, 3vw, 60px);  
  position: relative;  
  width: 100%;  
  color: var(--color-primary);
  text-transform: lowercase;
}

.products-demand__corner-svg {  
  display: inline-block;  
  width: clamp(25px, 1.5vw, 35px);  
  height: clamp(25px, 1.5vw, 35px);  
  margin-left: clamp(5px, 0.3vw, 8px);  
  vertical-align: top;
}

.products-demand__carousel {  
  margin-top: clamp(2rem, 3vw, 4rem);  
  width: 100%;  
  position: relative;  
  overflow: visible;
}

@media (min-width: 1200px) {
  .products-demand__carousel {
    padding-right: 0;
    margin-right: 0;
  }
  
  .carousel__track {
    padding-right: 0;
  }
  
  .carousel__slide:last-child {
    padding-right: 0;
    margin-right: 0;
  }
}

.carousel__track {  
  display: flex;  
  gap: clamp(20px, 2vw, 40px);  
  width: 100%;  
  overflow-x: auto;  
  scroll-snap-type: x mandatory;  
  scrollbar-width: none; /* Firefox */  
  -ms-overflow-style: none; /* IE and Edge */  
  padding-bottom: clamp(20px, 2vw, 30px);
  padding-right: 0;
  padding-left: 0;
}

.carousel__track::-webkit-scrollbar {  
  display: none; /* Chrome, Safari and Opera */
}

.carousel__slide {  
  scroll-snap-align: start;  
  flex: 0 0 auto;  
  width: clamp(220px, 22vw, 380px);  
  min-width: clamp(220px, 18vw, 280px);
  max-width: clamp(350px, 28vw, 420px);
}

.carousel__slide:last-child {
  margin-right: 0;
}

.product-card {  
  display: flex;  
  flex-direction: column;  
  align-items: flex-start;
  text-align: left;  
  background: #fff;  
  padding: clamp(25px, 2.5vw, 40px) clamp(20px, 2vw, 30px);  
  border-radius: 0;  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {  
  transform: translateY(clamp(-8px, -0.8vw, -12px));
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card__img {  
  width: 100%;  
  height: clamp(180px, 16vw, 280px);
  object-fit: cover;  
  margin: 0 auto clamp(15px, 1.5vw, 25px) auto;  
  border-radius: 0;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.02);
}

.product-card__title {  
  font-size: clamp(18px, 1.4vw, 26px);  
  font-weight: 600;  
  margin: 0 0 clamp(15px, 1.5vw, 25px) 0;  
  color: var(--color-secondary);
  line-height: 1.3;
}

.product-card__button {  
  margin-top: clamp(10px, 1vw, 20px);  
  background-color: var(--color-primary);  
  border-radius: 0;  
  padding: clamp(8px, 0.8vw, 14px) clamp(20px, 2vw, 32px);  
  font-size: clamp(14px, 1.1vw, 20px);  
  font-weight: 600;  
  color: #fff;  
  text-decoration: none;  
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 0.6vw, 10px);
  border: none;
  cursor: pointer;
}

.product-card__button-arrow{
  display: inline-block;
  width: clamp(12px, 1vw, 18px);
  height: auto;
  transition: transform 0.3s ease;
}

.product-card__button:hover {  
  background-color: var(--color-secondary);  
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.product-card__button:hover .product-card__button-arrow {
  transform: translateX(3px);
}

.carousel__nav {  
  display: flex;  
  justify-content: center;  
  margin-top: clamp(25px, 2.5vw, 40px);
  width: 100%;
}

.carousel__progress-container {
  position: relative;
  width: clamp(200px, 20vw, 350px);
  height: clamp(8px, 0.6vw, 12px);
  background-color: rgba(230, 57, 70, 0.2);
  border-radius: 12px;
  overflow: visible;
  cursor: pointer;
  user-select: none;
}

.carousel__progress-bar {
  position: absolute;
  top: clamp(-2px, -0.2vw, -3px);
  left: 0;
  height: clamp(12px, 1vw, 18px);
  width: clamp(50px, 5vw, 80px);
  background-color: var(--color-primary, #E63946);
  border-radius: 12px;
  transition: left 0.3s ease;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
  cursor: grab;
  user-select: none;
}

.carousel__progress-bar:active {
  cursor: grabbing;
  transition: none;
}

.about {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 550px;
  background-color: #f9f9f9;
}

.about .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.about__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

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

.about__content {
  position: relative;
  z-index: 2;
  padding: 0;
  width: 100%;
}

.about__text {
  max-width: 410px;
  color: #232323;
  background-color: transparent;
  padding: 0;
}

.about__text .section__title {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
}

.about__corner-svg {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  vertical-align: top;
}

.about__text p {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: #232323;
  max-width: 95%;
  font-size: 0.95rem;
}

.about__button {
  background-color: #E63946;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
}

.about__button-arrow {
  margin-left: 8px;
  display: inline-block;
}

.about__button:hover {
  background-color: #d42836;
  color: #ffffff;
  text-decoration: none;
}


.quality {
  padding: 60px 0;
  background-color: #f8f8f8;
  width: 100%;
  overflow: hidden;
  min-height: 350px;
}

.quality__content {
  text-align: left;
  width: 100%;
}

.quality__content .section__title {
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
}

.quality__content p {
  text-align: center;
  margin: 2rem auto;
}

/* Quality mobile-only title - hidden by default (desktop/tablet) */
.quality__title--mobile-only {
  display: none !important;
}

/* Ensure mobile version is hidden on tablet and desktop - MAXIMUM SPECIFICITY */
@media (min-width: 768px) {
  body .quality .quality__content .quality__title--mobile-only {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

.quality__corner-svg {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  vertical-align: top;
}

/* Quality Stats Table */
.quality__stats-table {
  width: 100%;
  margin: 3rem auto 0;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quality__stats-row {
  display: flex;
  width: 100%;
}

.quality__stats-cell {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.quality__stats-cell:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 20%;
  width: 1px;
  background-color: #e0e0e0;
}

.quality__stats-cell:hover {
  background-color: #f8f8f8;
  transform: translateY(-2px);
}

.quality__stats-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quality__stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}


.insights {
  padding: 60px 0;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}

.insights .section__title {
  color: var(--color-primary);
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  display: inline-block;
  position: relative;
}

.insights__corner-svg {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  vertical-align: top;
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 100%;
}

.insight-card {
  display: flex;
  overflow: hidden;
  border-radius: 0;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.insight-card__image {
  width: 40%;
  min-width: 200px;
  overflow: hidden;
}

.insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insight-card__content {
  flex: 1;
  padding: 20px;
  background-color: #232323;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.insight-card__title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.insight-card__desc {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.insight-card__button {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 0;
  text-decoration: none;
  align-self: flex-start;
  border: none;
  transition: background-color 0.3s ease;
}

.insight-card__button:hover {
  background-color: #d42836;
  color: #fff;
  text-decoration: none;
}

.insight-card__button-arrow {
  margin-left: 8px;
  width: 12px;
  height: 12px;
}


.clients__logos {
  margin-top: var(--space-md);
  align-items: center;
}

.clients__logo img {
  max-width: 120px;
  margin: 0 auto;
  display: block;
  filter: grayscale(1) contrast(1.2);
  opacity: 0.8;
  transition: filter 0.2s, opacity 0.2s;
}

.clients__logo img:hover {
  filter: none;
  opacity: 1;
}

.clients {
  background-color: #fafafa;
  padding: var(--space-lg) 0;
}

.clients__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.clients__content .section__title {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  text-align: left;
}

.clients__corner-svg {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  vertical-align: top;
}

.clients__content p {
  color: var(--color-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.hero {
  position: relative;
  background: url("../assets/images/hero/hero-bg.png") no-repeat center center;
  background-size: 100% auto;
  padding: clamp(50px, 4vw, 80px) 0 clamp(70px, 5vw, 100px); /* Fluid padding */
  display: flex;
  align-items: flex-start;
}

.hero__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--container-max-width);
  width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  gap: clamp(2rem, 2rem + 2vw, 4rem);
}

/* Desktop-specific responsive padding for hero container */
@media (min-width: 1024px) and (max-width: 1199px) {
  .hero__container {
    padding: 0 0.5rem; /* Very minimal padding for small desktop screens */
    gap: clamp(1.5rem, 1.5rem + 1vw, 2.5rem); /* Constrained gap */
  }
}

@media (min-width: 1200px) and (max-width: 1279px) {
  .hero__container {
    padding: 0 0.75rem; /* Minimal padding for 1200px screens */
    gap: clamp(1.5rem, 1.5rem + 1.2vw, 2.7rem); /* Constrained gap for tight spacing */
  }
}

@media (min-width: 1280px) and (max-width: 1365px) {
  .hero__container {
    padding: 0 1rem; /* Small padding for 1280px screens */
    gap: clamp(1.8rem, 1.8rem + 1.5vw, 3.3rem); /* Constrained spacing */
  }
}

@media (min-width: 1366px) and (max-width: 1440px) {
  .hero__container {
    padding: 0 1.25rem; /* Moderate padding for 1366px screens */
    gap: clamp(2rem, 2rem + 1.8vw, 3.8rem); /* Constrained standard gap */
  }
}

@media (min-width: 1441px) and (max-width: 1599px) {
  .hero__container {
    padding: 0 2rem; /* Adequate padding for large desktop screens */
    gap: clamp(2rem, 2rem + 2vw, 4rem); /* Constrained original gap */
  }
}

@media (min-width: 1600px) and (max-width: 1919px) {
  .hero__container {
    padding: 0 2.5rem; /* Comfortable padding for extra large screens */
  }
}

/* ENHANCED DESKTOP BREAKPOINT SYSTEM FOR ULTRA-WIDE SCREENS */

/* Specific Breakpoints for Target Screen Sizes */

/* 2048px screens (2048x1152) - Common gaming monitors */
@media (min-width: 2048px) and (max-width: 2303px) {
  .hero__container {
    gap: clamp(2.8rem, 3.2vw, 4rem) !important; /* Reduced gap */
  }
  
  .hero__title {
    font-size: clamp(4.2rem, 4.5vw, 5.8rem) !important;
    margin-bottom: clamp(1.5rem, 2.2vw, 2.5rem) !important; /* Reduced margin */
  }
  
  .hero__subtitle {
    font-size: clamp(1.5rem, 1.7vw, 2rem) !important;
  }
  
  .hero__divider-svg {
    max-width: clamp(650px, 68vw, 850px) !important;
  }
  
  .hero__partner-logo {
    max-height: clamp(95px, 9.5vw, 135px) !important;
    max-width: clamp(150px, 14vw, 200px) !important;
  }
  
  .hero__form-card {
    max-width: clamp(520px, 48vw, 580px) !important;
  }
}

/* 2304px screens - 4K content creation displays */
@media (min-width: 2304px) and (max-width: 2559px) {
  .hero__container {
    gap: clamp(3.2rem, 3.8vw, 4.8rem) !important; /* Reduced gap */
  }
  
  .hero__title {
    font-size: clamp(4.8rem, 5.2vw, 6.5rem) !important;
    margin-bottom: clamp(1.8rem, 2.5vw, 3rem) !important; /* Reduced margin */
  }
  
  .hero__subtitle {
    font-size: clamp(1.6rem, 1.8vw, 2.2rem) !important;
  }
  
  .hero__divider-svg {
    max-width: clamp(700px, 72vw, 900px) !important;
  }
  
  .hero__partner-logo {
    max-height: clamp(105px, 10.5vw, 145px) !important;
    max-width: clamp(160px, 15vw, 220px) !important;
  }
  
  .hero__form-card {
    max-width: clamp(540px, 50vw, 620px) !important;
  }
}

/* 2880px screens - 5K iMac and similar displays */
@media (min-width: 2880px) and (max-width: 3439px) {
  .hero__container {
    gap: clamp(3.8rem, 4.2vw, 5.5rem) !important; /* Reduced gap */
  }
  
  .hero__title {
    font-size: clamp(5.5rem, 6vw, 7.8rem) !important;
    margin-bottom: clamp(2rem, 3vw, 3.5rem) !important; /* Reduced margin */
  }
  
  .hero__subtitle {
    font-size: clamp(1.7rem, 1.9vw, 2.4rem) !important;
  }
  
  .hero__divider-svg {
    max-width: clamp(800px, 78vw, 1000px) !important;
  }
  
  .hero__partner-logo {
    max-height: clamp(120px, 12vw, 165px) !important;
    max-width: clamp(180px, 17vw, 250px) !important;
  }
  
  .hero__partners {
    gap: clamp(2rem, 3.5vw, 4.5rem) !important; /* Reduced gap */
  }
  .hero__partners-2 {
    gap: clamp(2rem, 3.5vw, 4.5rem) !important; /* Reduced gap */
  }
  
  .hero__form-card {
    max-width: clamp(580px, 52vw, 720px) !important;
  }
}

/* Full HD to 4K Range (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
  :root {
    --container-max-width: clamp(1400px, 88vw, 2000px);
    --spacing-multiplier: 1.2;
  }
  
  .hero {
    background-size: cover !important; /* Better coverage for large screens */
    background-position: center top !important;
    padding: clamp(80px, 6vw, 120px) 0 clamp(100px, 7vw, 140px) !important;
  }
  
  .hero__container {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    padding: 0 !important; /* Removed left and right padding for large desktop optimization */
    max-width: var(--container-max-width) !important;
    margin: 0 auto !important;
    gap: clamp(2.5rem, 2.5rem + 1.5vw, 4rem) !important; /* Reduced gap */
  }
  
  .hero__left {
    flex: 1 1 55% !important; /* Optimized left content area for large desktop screens */
    padding-right: clamp(1.5rem, 2vw, 3rem) !important; /* Reduced spacing for left content */
  }
  
  .hero__right {
    flex: 1 1 45% !important; /* Optimized right form area for large desktop screens */
  }
  
  .hero__title {
    font-size: clamp(4rem, 4rem + 1.5vw, 6rem) !important; /* Significantly increased title size */
    line-height: 1.05 !important; /* Tighter line height for large text */
    margin-bottom: clamp(1.2rem, 1.8vw, 2.2rem) !important; /* Reduced space after title */
    font-weight: 800 !important;
    letter-spacing: -0.02em !important; /* Better spacing for large text */
  }
  
  .hero__subtitle {
    font-size: clamp(1.4rem, 1.4rem + 0.4vw, 1.9rem) !important; /* Increased subtitle size */
    margin-bottom: clamp(1rem, 1.5vw, 1.5rem) !important; /* Reduced margin */
    line-height: 1.3 !important;
  }
  
  .hero__divider {
    margin: clamp(1rem, 1.5vw, 1.5rem) 0 !important; /* Reduced divider spacing */
  }
  
  .hero__divider-svg {
    max-width: clamp(600px, 65vw, 800px) !important; /* Significantly larger divider */
    height: auto !important;
  }
  
  .hero__subtitle-group {
    margin-top: clamp(1.2rem, 2vw, 2.2rem) !important; /* Reduced space before partners */
  }
  
  .hero__partners {
    gap: clamp(2.5rem, 4.5vw, 5rem) !important; /* Increased horizontal spacing between partners */
    margin-top: clamp(2rem, 2.5vw, 3rem) !important; /* Increased spacing from subtitle */
  }

  .hero__partners-2 {
    gap: clamp(2.5rem, 4.5vw, 5rem) !important; /* Increased horizontal spacing between partners */
    margin-top: clamp(2rem, 2.5vw, 3rem) !important; /* Increased spacing from subtitle */
  }
  
  .hero__partner-logo {
    max-height: clamp(110px, 11vw, 160px) !important; /* Larger partner logos */
    max-width: clamp(170px, 16vw, 230px) !important; /* Increased logo width */
    object-fit: contain !important;
  }
  
  .hero__form-card {
    max-width: clamp(650px, 60vw, 850px) !important; /* Significantly larger form for large desktops */
    padding: clamp(2.5rem, 2.5rem + 0.6vw, 3.5rem) clamp(1.5rem, 1.5rem + 0.3vw, 2rem) !important; /* Reduced top/bottom padding */
    border-width: clamp(18px, 1.4vw, 24px) !important; /* Thicker border for prominence */
  }
  
  .hero__form-title {
    font-size: clamp(30px, 2.6vw, 40px) !important; /* Reduced form title size */
    margin-bottom: clamp(18px, 1.5vw, 24px) !important; /* Increased spacing to description */
    line-height: 1.15 !important; /* Optimized line height */
    font-weight: 800 !important; /* Bolder weight */
  }
  
  .hero__form-desc {
    font-size: clamp(15px, 1.3vw, 20px) !important; /* Reduced description size */
    margin-bottom: clamp(12px, 1vw, 16px) !important; /* Further reduced margin */
    line-height: 1.4 !important; /* Better readability */
    max-width: 100% !important; /* Override inherited 85% max-width for large desktop screens */
  }
  
  .hero__form input,
  .hero__form textarea {
    font-size: clamp(18px, 1.5vw, 24px) !important; /* Much larger input text */
    padding: clamp(8px, 0.7vw, 12px) clamp(14px, 1.1vw, 18px) !important; /* Further reduced vertical input padding */
    margin-bottom: clamp(8px, 0.7vw, 12px) !important; /* Much tighter spacing between inputs */
    border-width: clamp(1.5px, 0.1vw, 2px) !important; /* Slightly thicker borders */
  }
  
  .hero__form textarea {
    min-height: clamp(120px, 10vw, 160px) !important; /* Larger textarea height for desktop */
    resize: vertical !important;
  }
  
  .hero__form-button {
    font-size: clamp(18px, 1.5vw, 24px) !important; /* Larger button text */
    padding: clamp(16px, 1.4vw, 22px) clamp(24px, 1.9vw, 32px) !important; /* Reduced horizontal button padding */
    margin-top: clamp(2px, 0.2vw, 4px) !important; /* Minimal spacing from inputs to button */
    min-width: clamp(220px, 20vw, 280px) !important; /* Larger button width */
    font-weight: 700 !important; /* Bolder button text */
  }
  
  .hero__form-inner-corner {
    width: clamp(70px, 6vw, 90px) !important;
    height: clamp(54px, 4.8vw, 70px) !important;
  }
  
  .hero__form-corner-arrow {
    width: clamp(54px, 4.8vw, 70px) !important;
    height: clamp(54px, 4.8vw, 70px) !important;
  }

  .hero__form-card::before {
    width: clamp(18px, 1.5vw, 25px) !important;
    height: clamp(18px, 1.5vw, 25px) !important;
    bottom: clamp(-25px, -1.7vw, -26px) !important;
    right: clamp(-25px, -1.6vw, -25px) !important;
  }
  
  .hero__form-card::after {
    width: clamp(18px, 1.5vw, 25px) !important;
    height: clamp(18px, 1.5vw, 25px) !important;
    bottom: clamp(-25px, -1.7vw, -26px) !important;
    right: clamp(-51px, -2.8vw, -40px) !important;
  }

  .container {
    max-width: var(--container-max-width);
  }
}

/* 4K and Ultra-Wide Range (2560px - 3439px) */
@media (min-width: 2560px) and (max-width: 3439px) {
  :root {
    --container-max-width: var(--ultra-wide-container-max);
    --spacing-multiplier: 1.4;
  }
  
  .hero {
    background-size: cover !important;
    background-position: center top !important;
    background-attachment: fixed !important; /* Parallax effect for ultra-wide */
    padding: clamp(100px, 7vw, 140px) 0 clamp(120px, 8vw, 160px) !important;
  }
  
  .hero__container {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    padding: 0 !important; /* Removed left and right padding for large desktop optimization */
    max-width: var(--container-max-width) !important;
    margin: 0 auto !important;
    gap: clamp(3rem, 3rem + 2vw, 5rem) !important; /* Reduced gap for 4K */
  }
  
  .hero__left {
    flex: 1 1 55% !important; /* Optimized left content area for large desktop screens */
    padding-right: clamp(2rem, 3vw, 4rem) !important; /* Reduced spacing for left content */
  }
  
  .hero__right {
    flex: 1 1 45% !important; /* Optimized right form area for large desktop screens */
  }
  
  .hero__title {
    font-size: clamp(4rem, 4rem + 1.5vw, 6rem) !important; /* Reduced title size for 4K displays */
    line-height: 1.02 !important; /* Even tighter for large text */
    margin-bottom: clamp(1.5rem, 2.5vw, 3rem) !important; /* Reduced margin */
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
  }
  
  .hero__subtitle {
    font-size: clamp(1.6rem, 1.6rem + 0.5vw, 2.3rem) !important; /* Larger subtitle for 4K */
    margin-bottom: clamp(1.2rem, 2vw, 2.2rem) !important; /* Reduced margin */
    line-height: 1.25 !important;
  }
  
  .hero__divider {
    margin: clamp(1.2rem, 2vw, 2.2rem) 0 !important; /* Reduced divider spacing */
  }
  
  .hero__divider-svg {
    max-width: clamp(750px, 75vw, 1000px) !important; /* Much larger divider for 4K */
    height: auto !important;
  }
  
  .hero__subtitle-group {
    margin-top: clamp(1.5rem, 2.5vw, 3rem) !important; /* Reduced space before partners */
  }
  
  .hero__partners {
    gap: clamp(3rem, 5vw, 6.5rem) !important; /* Increased horizontal spacing for 4K */
    margin-top: clamp(2.5rem, 3vw, 4rem) !important; /* Increased spacing from subtitle */
  }
  
  .hero__partners-2 {
    gap: clamp(3rem, 5vw, 6.5rem) !important; /* Increased horizontal spacing for 4K */
    margin-top: clamp(2.5rem, 3vw, 4rem) !important; /* Increased spacing from subtitle */
  }
  
  .hero__partner-logo {
    max-height: clamp(140px, 13vw, 190px) !important; /* Much larger logos for 4K */
    max-width: clamp(210px, 19vw, 280px) !important; /* Increased logo width for 4K */
    object-fit: contain !important;
  }
  
  .hero__partner-logo {
    max-height: clamp(80px, 8vw, 110px); /* Larger logos for ultra-wide */
    max-width: clamp(120px, 12vw, 165px);
  }
  
  .hero__form-card {
    max-width: clamp(800px, 70vw, 1000px) !important; /* Much larger form for 4K displays */
    padding: clamp(3.2rem, 3.2rem + 0.8vw, 4.5rem) clamp(2rem, 2rem + 0.4vw, 2.8rem) !important; /* Reduced top/bottom padding */
    border-width: clamp(22px, 1.8vw, 30px) !important; /* Much thicker border for 4K */
  }
  
  .hero__form-title {
    font-size: clamp(36px, 3.2vw, 48px) !important; /* Reduced form title size for 4K */
    margin-bottom: clamp(22px, 1.8vw, 30px) !important; /* Increased spacing to description */
    line-height: 1.12 !important; /* Optimal line height */
    font-weight: 800 !important; /* Maximum boldness */
  }
  
  .hero__form-desc {
    font-size: clamp(18px, 1.5vw, 24px) !important; /* Reduced description size for 4K */
    margin-bottom: clamp(14px, 1.2vw, 18px) !important; /* Further reduced margin */
    line-height: 1.35 !important; /* Better readability */
    max-width: 100% !important; /* Override inherited 85% max-width for large desktop screens */
  }
  
  .hero__form input,
  .hero__form textarea {
    font-size: clamp(22px, 1.8vw, 28px) !important; /* Much larger input text for 4K */
    padding: clamp(8px, 0.7vw, 12px) clamp(16px, 1.3vw, 22px) !important; /* Reduced vertical input padding for 4K */
    margin-bottom: clamp(10px, 0.8vw, 14px) !important; /* Much tighter spacing between inputs */
    border-width: clamp(2px, 0.15vw, 2.5px) !important; /* Thicker input borders */
  }
  
  .hero__form textarea {
    min-height: clamp(150px, 12vw, 200px) !important; /* Much larger textarea height for 4K */
    resize: vertical !important;
  }
  
  .hero__form-button {
    font-size: clamp(22px, 1.8vw, 28px) !important; /* Much larger button text for 4K */
    padding: clamp(20px, 1.6vw, 26px) clamp(28px, 2.3vw, 38px) !important; /* Reduced horizontal button padding */
    margin-top: clamp(3px, 0.3vw, 6px) !important; /* Minimal spacing from inputs to button */
    min-width: clamp(260px, 24vw, 340px) !important; /* Much larger button for 4K */
    font-weight: 700 !important; /* Bold button text */
  }
  
  .hero__form-inner-corner {
    width: clamp(80px, 6.5vw, 110px) !important;
    height: clamp(62px, 5.2vw, 85px) !important;
  }
  
  .hero__form-corner-arrow {
    width: clamp(62px, 5.2vw, 85px) !important;
    height: clamp(62px, 5.2vw, 85px) !important;
  }

  .hero__form-card::before {
    width: clamp(22px, 1.8vw, 32px) !important;
    height: clamp(22px, 1.8vw, 32px) !important;
    bottom: clamp(-30px, -2.2vw, -34px) !important;
    right: clamp(-30px, -2.1vw, -32px) !important;
  }
  
  .hero__form-card::after {
    width: clamp(22px, 1.8vw, 32px) !important;
    height: clamp(22px, 1.8vw, 32px) !important;
    bottom: clamp(-30px, -2.2vw, -34px) !important;
    right: clamp(-62px, -3.5vw, -52px) !important;
  }

  .container {
    max-width: var(--container-max-width);
  }
  
  /* Enhanced spacing for ultra-wide */
  section {
    padding: clamp(3rem, 3rem + 2vw, 6rem) 0;
  }
}

/* Ultra-Wide Monitors (3440px+) */
@media (min-width: 3440px) {
  :root {
    --container-max-width: clamp(2000px, 75vw, 2800px);
    --spacing-multiplier: 1.6;
  }
  
  .hero {
    background-size: cover !important;
    background-position: center center !important; /* Optimal positioning for massive screens */
    background-attachment: fixed !important;
    padding: clamp(120px, 8vw, 160px) 0 clamp(140px, 9vw, 180px) !important;
  }
  
  .hero__container {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    padding: 0 !important; /* Removed left and right padding for large desktop optimization */
    max-width: var(--container-max-width) !important;
    margin: 0 auto !important;
    gap: clamp(3.5rem, 3.5rem + 2.5vw, 6rem) !important; /* Reduced spacing between content */
  }
  
  .hero__left {
    flex: 1 1 55% !important; /* Optimized left content area for large desktop screens */
    padding-right: clamp(2.5rem, 3.5vw, 5rem) !important; /* Reduced spacing for left content */
  }
  
  .hero__right {
    flex: 1 1 45% !important; /* Optimized right form area for large desktop screens */
  }
  
  .hero__title {
    font-size: clamp(4.5rem, 4.5rem + 2vw, 7rem) !important; /* Reduced title size for ultra-wide */
    line-height: 1.0 !important; /* Tightest line height */
    margin-bottom: clamp(1.8rem, 3vw, 3.5rem) !important; /* Reduced margin */
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
  }
  
  .hero__subtitle {
    font-size: clamp(1.8rem, 1.8rem + 0.6vw, 2.6rem) !important; /* Maximum subtitle size */
    margin-bottom: clamp(1.5rem, 2.5vw, 3rem) !important; /* Reduced margin */
    line-height: 1.2 !important;
  }
  
  .hero__divider {
    margin: clamp(1.5rem, 2.5vw, 3rem) 0 !important; /* Reduced divider spacing */
  }
  
  .hero__divider-svg {
    max-width: clamp(900px, 85vw, 1200px) !important; /* Maximum divider size */
    height: auto !important;
  }
  
  .hero__subtitle-group {
    margin-top: clamp(1.8rem, 3vw, 3.5rem) !important; /* Reduced space before partners */
  }
  
  .hero__partners {
    gap: clamp(2rem, 4vw, 5.5rem) !important; /* Reduced spacing for partners */
    margin-top: clamp(1.5rem, 2.5vw, 3rem) !important; /* Reduced margin */
  }
  .hero__partners-2 {
    gap: clamp(2rem, 4vw, 5.5rem) !important; /* Reduced spacing for partners */
    margin-top: clamp(1.5rem, 2.5vw, 3rem) !important; /* Reduced margin */
  }
  
  .hero__partner-logo {
    max-height: clamp(130px, 13vw, 180px) !important; /* Maximum logos for ultra-wide */
    max-width: clamp(200px, 18vw, 280px) !important;
    object-fit: contain !important;
  }
  
  .hero__left {
    flex: 1 1 62%; /* Maximum content area for massive screens */
  }
  
  .hero__right {
    flex: 1 1 33%; /* Balanced form area */
  }
  
  .hero__title {
    font-size: clamp(4.5rem, 4.5rem + 1.8vw, 6.5rem); /* Large title for massive screens */
  }
  
  .hero__subtitle {
    font-size: clamp(1.4rem, 1.4rem + 0.5vw, 2rem); /* Enhanced subtitle */
  }
  
  .hero__divider-svg {
    max-width: clamp(700px, 65vw, 900px); /* Maximum divider width */
  }
  
  .hero__partners {
    gap: clamp(4rem, 6.5vw, 8rem); /* Maximum horizontal spacing for ultra-wide */
    margin-top: clamp(3rem, 3.5vw, 4.5rem) !important; /* Increased spacing from subtitle for ultra-wide */
  }
  
  .hero__partner-logo {
    max-height: clamp(120px, 12vw, 160px); /* Maximum logo size for ultra-wide */
    max-width: clamp(180px, 18vw, 240px); /* Increased logo width for ultra-wide */
  }
  
  .hero__form-card {
    max-width: clamp(950px, 80vw, 1200px) !important; /* Maximum form size for ultra-wide */
    padding: clamp(3.8rem, 3.8rem + 1vw, 5.5rem) clamp(2.5rem, 2.5rem + 0.5vw, 3.5rem) !important; /* Reduced top/bottom padding */
    border-width: clamp(26px, 2.2vw, 36px) !important; /* Thickest border for ultra-wide */
  }
  
  .hero__form-title {
    font-size: clamp(42px, 3.8vw, 56px) !important; /* Increased form title for ultra-wide */
    margin-bottom: clamp(26px, 2.2vw, 36px) !important; /* Increased spacing to description */
    line-height: 1.1 !important; /* Tight line height */
    font-weight: 800 !important; /* Maximum boldness */
  }
  
  .hero__form-desc {
    font-size: clamp(22px, 1.9vw, 30px) !important; /* Increased description for ultra-wide */
    margin-bottom: clamp(16px, 1.4vw, 22px) !important; /* Further reduced margin */
    line-height: 1.3 !important; /* Optimal readability */
    max-width: 100% !important; /* Override inherited 85% max-width for large desktop screens */
  }
  
  .hero__form input,
  .hero__form textarea {
    font-size: clamp(26px, 2.1vw, 32px) !important; /* Maximum input text for ultra-wide */
    padding: clamp(10px, 0.9vw, 16px) clamp(18px, 1.5vw, 26px) !important; /* Reduced vertical input padding for ultra-wide */
    margin-bottom: clamp(12px, 1vw, 16px) !important; /* Much tighter spacing between inputs */
    border-width: clamp(2.5px, 0.2vw, 3px) !important; /* Thickest input borders */
  }
  
  .hero__form textarea {
    min-height: clamp(180px, 14vw, 240px) !important; /* Maximum textarea height for ultra-wide */
    resize: vertical !important;
  }
  
  .hero__form-button {
    font-size: clamp(26px, 2.1vw, 32px) !important; /* Maximum button text for ultra-wide */
    padding: clamp(24px, 1.9vw, 32px) clamp(32px, 2.6vw, 44px) !important; /* Reduced horizontal button padding */
    margin-top: clamp(4px, 0.4vw, 8px) !important; /* Minimal spacing from inputs to button */
    min-width: clamp(300px, 28vw, 400px) !important; /* Maximum button width for ultra-wide */
    font-weight: 700 !important; /* Bold button text */
  }
  
  .hero__form-inner-corner {
    width: clamp(90px, 7vw, 130px) !important;
    height: clamp(70px, 5.8vw, 100px) !important;
  }
  
  .hero__form-corner-arrow {
    width: clamp(70px, 5.8vw, 100px) !important;
    height: clamp(70px, 5.8vw, 100px) !important;
  }

  .hero__form-card::before {
    width: clamp(26px, 2.2vw, 40px) !important;
    height: clamp(26px, 2.2vw, 40px) !important;
    bottom: clamp(-36px, -2.8vw, -42px) !important;
    right: clamp(-36px, -2.6vw, -40px) !important;
  }
  
  .hero__form-card::after {
    width: clamp(26px, 2.2vw, 40px) !important;
    height: clamp(26px, 2.2vw, 40px) !important;
    bottom: clamp(-36px, -2.8vw, -42px) !important;
    right: clamp(-76px, -4.2vw, -64px) !important;
  }

  .container {
    max-width: var(--container-max-width);
  }
  
  /* Ultra-wide specific layout adjustments */
  section {
    padding: clamp(4rem, 4rem + 2vw, 8rem) 0;
  }
  
  /* Prevent excessive horizontal stretching */
  .footer__main {
    max-width: var(--container-max-width);
    margin: 0 auto;
  }
}

/* HOMEPAGE-SPECIFIC ULTRA-WIDE OPTIMIZATIONS */

/* Desktop Optimization Range (1200px - 1366px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  /* SVG Corner positioning */
  .features__corner-svg {
    display: inline-block !important;
    width: clamp(24px, 2.4vw, 25px) !important;
    height: clamp(24px, 2.4vw, 25px) !important;
    margin-left: clamp(1px, 0.5vw, 2px) !important;
    margin-top: -3px !important;
    vertical-align: top !important;
  }
  
  .estimator-cta .estimator-cta__title .estimator-cta__corner-svg {
    display: inline-block !important;
    width: clamp(24px, 2.4vw, 25px) !important;
    height: clamp(24px, 2.4vw, 25px) !important;
    margin-left: clamp(1px, 0.5vw, 2px) !important;
    margin-top: -3px !important;
    vertical-align: top !important;
  }
  
  .products-demand .products-demand__title .products-demand__corner-svg {
    display: inline-block !important;
    width: clamp(24px, 2.4vw, 25px) !important;
    height: clamp(24px, 2.4vw, 25px) !important;
    margin-left: clamp(1px, 0.5vw, 2px) !important;
    margin-top: -3px !important;
    vertical-align: top !important;
  }
  
  /* Enhanced Products in Demand Section for 1200px-1399px */
  .products-demand {
    padding: clamp(60px, 4vw, 75px) 0;
  }
  
  .products-demand .container {
    margin: 0 0 0 clamp(1.5rem, 6vw, 6rem);
    padding: 0;
  }
  
  .products-demand__title {
    font-size: clamp(1.8rem, 1.8rem + 0.4vw, 2.1rem);
    margin-bottom: clamp(35px, 2.2vw, 50px);
    line-height: 1.2;
  }
  
  .products-demand__corner-svg {
    width: clamp(20px, 1.2vw, 25px);
    height: clamp(20px, 1.2vw, 25px);
    margin-left: clamp(3px, 0.3vw, 5px);
  }
  
  .carousel__track {
    gap: clamp(18px, 1.5vw, 25px);
    padding-bottom: clamp(18px, 1.8vw, 25px);
    padding-right: 0;
    padding-left: 0;
  }
  
  .carousel__slide {
    width: clamp(200px, 20vw, 280px);
    min-width: clamp(180px, 16vw, 240px);
    max-width: clamp(280px, 24vw, 320px);
  }
  
  .product-card {
    padding: clamp(20px, 2vw, 30px) clamp(15px, 1.5vw, 22px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  }
  
  .product-card:hover {
    transform: translateY(clamp(-6px, -0.6vw, -8px));
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }
  
  .product-card__img {
    height: clamp(140px, 14vw, 200px);
    margin-bottom: clamp(12px, 1.2vw, 18px);
  }
  
  .product-card__title {
    font-size: clamp(16px, 1.2vw, 20px);
    margin-bottom: clamp(12px, 1.2vw, 18px);
  }
  
  .product-card__button {
    padding: clamp(6px, 0.6vw, 10px) clamp(16px, 1.6vw, 24px);
    font-size: clamp(12px, 0.9vw, 16px);
    gap: clamp(4px, 0.4vw, 6px);
    margin-top: clamp(8px, 0.8vw, 12px);
  }
  
  .product-card__button-arrow {
    width: clamp(10px, 0.8vw, 14px);
  }
  
  .carousel__progress-container {
    width: clamp(180px, 16vw, 250px);
    height: clamp(6px, 0.5vw, 8px);
  }
  
  .carousel__progress-bar {
    height: clamp(10px, 0.8vw, 12px);
    width: clamp(40px, 4vw, 60px);
    top: clamp(-2px, -0.15vw, -2px);
  }
  
  .about__corner-svg {
    top: clamp(-21px, -2.5vw, -15px) !important;
    right: clamp(-29px, -3.3vw, -19px) !important;
  }
  
  .quality__corner-svg,
  .insights__corner-svg {
    top: clamp(-22px, -2.6vw, -16px) !important;
    right: clamp(-30px, -3.4vw, -20px) !important;
  }

  .features {
    padding: clamp(60px, 4vw, 75px) 0;
  }
  
  .features .container {
    padding: 0 clamp(0.3rem, 0.8vw, 1rem);
  }
  
  .features__top {
    gap: clamp(35px, 2.5vw, 50px);
    margin-bottom: clamp(35px, 2.2vw, 50px);
  }
  
  .features__title {
    font-size: clamp(2rem, 2rem + 0.5vw, 2.4rem);
    margin-top: clamp(35px, 2.2vw, 50px);
    margin-bottom: clamp(25px, 1.8vw, 40px);
  }
  
  .features__corner-svg {
    top: clamp(-0.5rem, -0.5rem - 0.2vw, -0.7rem);
    right: clamp(-0.9rem, -0.9rem - 0.25vw, -1.2rem);
    width: clamp(20px, 1.2vw, 25px);
  }
  
  .features__video {
    height: clamp(320px, 18vw, 380px);
  }
  
  .features__video-title {
    bottom: clamp(25px, 1.6vw, 35px);
    left: clamp(25px, 1.6vw, 35px);
    font-size: clamp(26px, 1.6vw, 32px);
  }
  
  .features__video-button {
    bottom: -50px;
    left: clamp(25px, 1.6vw, 35px);
    padding: clamp(8px, 0.5vw, 10px) clamp(18px, 1.2vw, 24px);
    font-size: clamp(15px, 1vw, 18px);
  }
  
  .features__video:hover .features__video-title {
    transform: translateY(clamp(-55px, -3.5vw, -70px));
  }
  
  .features__video:hover .features__video-button {
    bottom: clamp(25px, 1.6vw, 35px);
  }
  
  .features__bottom {
    gap: clamp(22px, 1.6vw, 30px);
  }
  
  .features__card {
    height: clamp(280px, 16vw, 340px);
  }
  
  .features__card-title {
    font-size: clamp(22px, 1.4vw, 26px);
    bottom: clamp(22px, 1.4vw, 30px);
    left: clamp(22px, 1.4vw, 30px);
    max-width: clamp(110px, 7.5vw, 140px);
  }
  
  .features__card-button {
    bottom: -50px;
    left: clamp(22px, 1.4vw, 30px);
    padding: clamp(8px, 0.5vw, 10px) clamp(14px, 1vw, 18px);
    font-size: clamp(13px, 0.8vw, 16px);
  }
  
  .features__card:hover .features__card-title {
    transform: translateY(clamp(-38px, -2.3vw, -50px));
  }
  
  .features__card:hover .features__card-button {
    bottom: clamp(22px, 1.4vw, 30px);
  }
  
  /* Enhanced Estimator CTA Section for 1200px-1399px */
  .estimator-cta {
    padding: clamp(60px, 4vw, 75px) 0;
  }
  
  .estimator-cta__container {
    padding: 0 clamp(0.3rem, 0.8vw, 1rem);
  }
  
  .estimator-cta__content {
    width: clamp(68%, 72vw, 78%);
  }
  
  .estimator-cta__title {
    font-size: clamp(1.8rem, 1.8rem + 0.4vw, 2.1rem);
    margin-bottom: clamp(35px, 2.2vw, 50px);
    line-height: 1.2;
  }
  
  .estimator-cta__corner-svg {
    width: clamp(20px, 1.2vw, 25px);
    height: clamp(20px, 1.2vw, 25px);
    margin-left: clamp(3px, 0.3vw, 5px);
  }
  
  .estimator-cta__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(10px, 0.7vw, 14px) clamp(20px, 1.4vw, 28px) !important;
    font-size: clamp(15px, 1vw, 18px) !important;
    min-width: clamp(160px, 16vw, 220px) !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
    background: var(--color-primary) !important;
    margin-top: clamp(5px, 0.5vw, 8px) !important;
    text-decoration: none !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
  }
  
  .estimator-cta__button:hover {
    background: #fff !important;
    color: var(--color-primary) !important;
  }
  
  .estimator-cta__button:hover .estimator-cta__button-arrow img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(82%) saturate(3718%) hue-rotate(343deg) brightness(87%) contrast(92%) !important;
  }
  
  .estimator-cta__button-arrow {
    margin-left: clamp(8px, 0.6vw, 12px) !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  
  .estimator-cta__button-arrow img {
    width: clamp(16px, 1.2vw, 20px) !important;
    aspect-ratio: 1/1 !important;
    object-fit: contain !important;
  }
}

/* Desktop Header Optimization (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
  .header__container {
    padding: 0 clamp(0px, 0.2vw, 2px);
    gap: clamp(16px, 3vw, 24px);
  }
  
  .header__nav-list {
    gap: clamp(8px, 1.8vw, 14px);
    margin-left: auto;
  }
  
  .header__nav-link {
    font-size: clamp(11px, 2.2vw, 14px);
    padding: clamp(6px, 1.5vw, 10px) clamp(8px, 2vw, 12px);
  }
  
  .header__dropdown-container {
    width: clamp(200px, 40vw, 240px);
  }
  
  .header__dropdown-link {
    font-size: clamp(10px, 2vw, 13px);
    padding: clamp(6px, 1.5vw, 10px) clamp(12px, 2.5vw, 16px);
  }
  
  .header__dropdown-icon::after {
    font-size: clamp(7px, 1.5vw, 9px);
    margin-left: clamp(3px, 0.8vw, 5px);
  }
}

/* ENHANCED HEADER OPTIMIZATION FOR ULTRA-WIDE SCREENS */

/* Full HD to 4K Range (1920px - 2559px) - Header Optimization */
@media (min-width: 1920px) and (max-width: 2559px) {
  .header {
    height: clamp(82px, 4.5vw, 95px) !important; /* Increased header height */
    width: 96% !important; /* Slightly wider for large screens */
    top: clamp(15px, 1vw, 20px) !important; /* Responsive top margin */
  }
  
  .header__container {
    padding: 0 clamp(1.5rem, 2vw, 2.5rem) !important; /* Slightly increased viewport spacing */
    gap: clamp(2rem, 3vw, 4rem) !important; /* Better spacing between elements */
    max-width: none !important; /* Override container max-width constraints */
    width: 100% !important; /* Full width minus minimal padding */
  }
  
  .header__logo {
    height: clamp(42px, 2.5vw, 52px) !important; /* Larger logo */
    width: auto !important;
  }
  
  .header__nav-list {
    gap: clamp(1rem, 2vw, 2.5rem) !important; /* Better spacing between nav items */
  }
  
  .header__nav-link {
    font-size: clamp(18px, 1.1vw, 22px) !important; /* Larger nav text */
    padding: 0 clamp(24px, 1.5vw, 32px) !important; /* Enhanced padding */
    font-weight: 600 !important; /* Bolder text for better visibility */
  }
  
  .header__dropdown-container {
    top: clamp(82px, 4.5vw, 95px) !important; /* Match header height */
    width: clamp(280px, 15vw, 320px) !important; /* Larger dropdown */
    border-radius: 0 0 8px 8px !important; /* Enhanced border radius */
  }
  
  .header__dropdown-link {
    font-size: clamp(16px, 1vw, 20px) !important; /* Larger dropdown text */
    padding: clamp(12px, 0.8vw, 16px) clamp(24px, 1.5vw, 32px) !important; /* Enhanced padding */
  }
  
  .header__dropdown-icon::after {
    border-left: clamp(6px, 0.4vw, 7px) solid transparent !important;
    border-right: clamp(6px, 0.4vw, 7px) solid transparent !important;
    border-top: clamp(6px, 0.4vw, 7px) solid white !important; /* Larger dropdown arrow */
  }
  
  .header__contact-us-btn {
    font-size: clamp(18px, 1.1vw, 22px) !important; /* Larger button text */
    padding: clamp(12px, 0.8vw, 16px) clamp(32px, 2vw, 40px) !important; /* Enhanced button padding */
    border-radius: 8px !important; /* Enhanced border radius */
    font-weight: 600 !important; /* Bolder button text */
  }
}

/* 4K and Ultra-Wide Range (2560px - 3439px) - Header Optimization */
@media (min-width: 2560px) and (max-width: 3439px) {
  .header {
    height: clamp(95px, 4vw, 110px) !important; /* Even larger header for 4K */
    width: 97% !important; /* Optimal width for 4K screens */
    top: clamp(20px, 1.2vw, 25px) !important;
  }
  
  .header__container {
    padding: 0 clamp(1.2rem, 1.5vw, 2rem) !important; /* Slightly increased viewport spacing for 4K */
    gap: clamp(3rem, 4vw, 5rem) !important; /* Optimal spacing for 4K */
    max-width: none !important; /* Override container max-width constraints */
    width: 100% !important; /* Full width minus minimal padding */
  }
  
  .header__logo {
    height: clamp(52px, 2.2vw, 62px) !important; /* Larger logo for 4K */
    width: auto !important;
  }
  
  .header__nav-list {
    gap: clamp(2rem, 2.5vw, 3rem) !important; /* Optimal nav spacing for 4K */
  }
  
  .header__nav-link {
    font-size: clamp(22px, 1vw, 26px) !important; /* Larger text for 4K */
    padding: 0 clamp(32px, 1.8vw, 40px) !important; /* Enhanced padding for 4K */
    font-weight: 700 !important; /* Even bolder for 4K visibility */
  }
  
  .header__dropdown-container {
    top: clamp(95px, 4vw, 110px) !important; /* Match header height */
    width: clamp(320px, 14vw, 380px) !important; /* Larger dropdown for 4K */
    border-radius: 0 0 10px 10px !important;
  }
  
  .header__dropdown-link {
    font-size: clamp(20px, 0.9vw, 24px) !important; /* Larger dropdown text for 4K */
    padding: clamp(16px, 1vw, 20px) clamp(32px, 1.8vw, 40px) !important; /* Enhanced padding for 4K */
  }
  
  .header__dropdown-icon::after {
    border-left: clamp(7px, 0.3vw, 8px) solid transparent !important;
    border-right: clamp(7px, 0.3vw, 8px) solid transparent !important;
    border-top: clamp(7px, 0.3vw, 8px) solid white !important; /* Larger arrow for 4K */
  }
  
  .header__contact-us-btn {
    font-size: clamp(22px, 1vw, 26px) !important; /* Larger button text for 4K */
    padding: clamp(16px, 1vw, 20px) clamp(40px, 2.2vw, 48px) !important; /* Enhanced button for 4K */
    border-radius: 10px !important; /* Enhanced border radius for 4K */
    font-weight: 700 !important; /* Maximum boldness for 4K */
  }
}

/* Ultra-Wide Monitors (3440px+) - Header Optimization */
@media (min-width: 3440px) {
  .header {
    height: clamp(110px, 3.5vw, 125px) !important; /* Maximum header height */
    width: 98% !important; /* Optimal width for ultra-wide */
    top: clamp(25px, 1.5vw, 30px) !important;
  }
  
  .header__container {
    padding: 0 clamp(1rem, 1.2vw, 1.5rem) !important; /* Increased viewport spacing for ultra-wide */
    gap: clamp(4rem, 5vw, 6rem) !important; /* Maximum spacing for ultra-wide */
    max-width: none !important; /* Override container max-width constraints */
    width: 100% !important; /* Full width minus minimal padding */
  }
  
  .header__logo {
    height: clamp(62px, 2vw, 72px) !important; /* Maximum logo size */
    width: auto !important;
  }
  
  .header__nav-list {
    gap: clamp(2.5rem, 3vw, 3.5rem) !important; /* Maximum nav spacing */
  }
  
  .header__nav-link {
    font-size: clamp(26px, 0.9vw, 30px) !important; /* Maximum text size */
    padding: 0 clamp(40px, 2vw, 48px) !important; /* Maximum padding */
    font-weight: 700 !important; /* Maximum boldness */
  }
  
  .header__dropdown-container {
    top: clamp(110px, 3.5vw, 125px) !important; /* Match header height */
    width: clamp(380px, 13vw, 420px) !important; /* Maximum dropdown size */
    border-radius: 0 0 12px 12px !important;
  }
  
  .header__dropdown-link {
    font-size: clamp(24px, 0.8vw, 28px) !important; /* Maximum dropdown text */
    padding: clamp(20px, 1.2vw, 24px) clamp(40px, 2vw, 48px) !important; /* Maximum padding */
  }
  
  .header__dropdown-icon::after {
    border-left: clamp(8px, 0.25vw, 9px) solid transparent !important;
    border-right: clamp(8px, 0.25vw, 9px) solid transparent !important;
    border-top: clamp(8px, 0.25vw, 9px) solid white !important; /* Maximum arrow size */
  }
  
  .header__contact-us-btn {
    font-size: clamp(26px, 0.9vw, 30px) !important; /* Maximum button text */
    padding: clamp(20px, 1.2vw, 24px) clamp(48px, 2.5vw, 56px) !important; /* Maximum button size */
    border-radius: 12px !important; /* Maximum border radius */
    font-weight: 700 !important; /* Maximum boldness */
  }
}

/* Large Desktop Optimization for Homepage (1400px - 1919px) */
@media (min-width: 1400px) and (max-width: 1919px) {
  :root {
    --container-width: calc(100% - 160px);
  }
  
  .hero {
    padding: 80px 0 100px;
  }
  
  .hero__title {
    font-size: calc(3.2rem + 1vw);
  }
  
  .hero__divider-svg {
    max-width: 600px;
  }
  
  .hero__left {
    flex: 1 1 55%;
  }
  
  .hero__right {
    flex: 1 1 40%;
  }
  
  .hero__form-card {
    max-width: 550px;
    padding: calc(2rem + 0.5vw) calc(1rem + 0.3vw);
  }
  
  .hero__form-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  .hero__form-desc {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 85%;
  }
  
  .hero__form {
    gap: 15px;
  }
  
  .hero__form input,
  .hero__form textarea {
    padding: 12px 18px;
  }
  
  .hero__form-button {
    padding: 14px 20px;
    font-size: calc(0.9rem + 0.1vw);
  }
  
  .carousel__slide {
    min-width: 260px;
    max-width: 350px;
  }
  
  .product-card__img {
    height: 220px;
  }
  
  .product-card__title {
    font-size: 24px;
  }
  
  /* Enhanced Features Section for 1400px-1919px */
  .features {
    padding: clamp(70px, 4.5vw, 90px) 0;
  }
  
  .features .container {
    padding: 0 clamp(0.5rem, 1vw, 1.5rem);
  }
  
  .features__top {
    gap: clamp(40px, 2.8vw, 60px);
    margin-bottom: clamp(40px, 2.5vw, 60px);
  }
  
  .features__header {
    flex: 0 0 40%;
  }
  
  .features__title {
    font-size: clamp(2.2rem, 2.2rem + 0.6vw, 2.8rem);
    margin-top: clamp(40px, 2.5vw, 60px);
    margin-bottom: clamp(30px, 2vw, 50px);
    line-height: 1.2;
  }
  
  .features__corner-svg {
    top: clamp(-0.6rem, -0.6rem - 0.2vw, -0.9rem);
    right: clamp(-1rem, -1rem - 0.3vw, -1.4rem);
    width: clamp(22px, 1.3vw, 28px);
  }
  
  .features__video {
    flex: 0 0 60%;
    height: clamp(340px, 20vw, 420px);
  }
  
  .features__video-title {
    bottom: clamp(30px, 1.8vw, 40px);
    left: clamp(30px, 1.8vw, 40px);
    font-size: clamp(28px, 1.8vw, 36px);
  }
  
  .features__video-button {
    bottom: -55px;
    left: clamp(30px, 1.8vw, 40px);
    padding: clamp(8px, 0.6vw, 12px) clamp(20px, 1.4vw, 28px);
    font-size: clamp(16px, 1.1vw, 20px);
    gap: clamp(5px, 0.4vw, 8px);
  }
  
  .features__video:hover .features__video-title {
    transform: translateY(clamp(-60px, -3.8vw, -75px));
  }
  
  .features__video:hover .features__video-button {
    bottom: clamp(30px, 1.8vw, 40px);
  }
  
  .features__bottom {
    gap: clamp(25px, 1.8vw, 35px);
  }
  
  .features__card {
    height: clamp(300px, 17vw, 380px);
  }
  
  .features__card-title {
    font-size: clamp(24px, 1.5vw, 30px);
    bottom: clamp(25px, 1.5vw, 35px);
    left: clamp(25px, 1.5vw, 35px);
    max-width: clamp(120px, 8vw, 160px);
  }
  
  .features__card-button {
    bottom: -55px;
    left: clamp(25px, 1.5vw, 35px);
    padding: clamp(8px, 0.6vw, 12px) clamp(15px, 1.2vw, 20px);
    font-size: clamp(14px, 0.9vw, 18px);
    gap: clamp(5px, 0.4vw, 8px);
  }
  
  .features__button-arrow {
    width: clamp(12px, 0.9vw, 16px);
  }
  
  .features__card:hover .features__card-title {
    transform: translateY(clamp(-40px, -2.5vw, -55px));
  }
  
  .features__card:hover .features__card-button {
    bottom: clamp(25px, 1.5vw, 35px);
  }
  
  /* Enhanced Estimator CTA Section for 1400px-1919px */
  .estimator-cta {
    padding: clamp(70px, 4.5vw, 90px) 0;
  }
  
  .estimator-cta__container {
    padding: 0 clamp(0.5rem, 1vw, 1.5rem);
  }
  
  .estimator-cta__content {
    width: clamp(65%, 70vw, 75%);
  }
  
  .estimator-cta__title {
    font-size: clamp(1.9rem, 1.9rem + 0.5vw, 2.4rem);
    margin-bottom: clamp(40px, 2.5vw, 60px);
    line-height: 1.2;
  }
  
  .estimator-cta__corner-svg {
    width: clamp(22px, 1.3vw, 28px);
    height: clamp(22px, 1.3vw, 28px);
    margin-left: clamp(4px, 0.4vw, 6px);
  }
  
  .estimator-cta__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(12px, 0.8vw, 16px) clamp(24px, 1.6vw, 32px) !important;
    font-size: clamp(16px, 1.1vw, 20px) !important;
    min-width: clamp(180px, 18vw, 240px) !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
    background: var(--color-primary) !important;
    margin-top: clamp(5px, 0.5vw, 8px) !important;
    text-decoration: none !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
  }
  
  .estimator-cta__button:hover {
    background: #fff !important;
    color: var(--color-primary) !important;
  }
  
  .estimator-cta__button:hover .estimator-cta__button-arrow img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(82%) saturate(3718%) hue-rotate(343deg) brightness(87%) contrast(92%) !important;
  }
  
  .estimator-cta__button-arrow {
    margin-left: clamp(8px, 0.6vw, 12px) !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  
  .estimator-cta__button-arrow img {
    width: clamp(14px, 1vw, 18px) !important;
    aspect-ratio: 1/1 !important;
    object-fit: contain !important;
  }
  
  /* Enhanced Products in Demand Section for 1400px-1919px */
  .products-demand {
    padding: clamp(70px, 4.5vw, 90px) 0;
  }
  
  .products-demand .container {
    padding: 0;
  }
  
  .products-demand__title {
    font-size: clamp(1.9rem, 1.9rem + 0.5vw, 2.4rem);
    margin-bottom: clamp(40px, 2.5vw, 60px);
    line-height: 1.2;
  }
  
  .products-demand__corner-svg {
    width: clamp(22px, 1.3vw, 28px);
    height: clamp(22px, 1.3vw, 28px);
    margin-left: clamp(4px, 0.4vw, 6px);
  }
  
  .carousel__track {
    gap: clamp(22px, 1.8vw, 32px);
    padding-bottom: clamp(22px, 2.2vw, 32px);
    padding-right: 0;
    padding-left: 0;
  }
  
  .carousel__slide {
    width: clamp(220px, 22vw, 320px);
    min-width: clamp(200px, 18vw, 280px);
    max-width: clamp(320px, 26vw, 380px);
  }
  
  .product-card {
    padding: clamp(25px, 2.2vw, 35px) clamp(18px, 1.8vw, 26px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .product-card:hover {
    transform: translateY(clamp(-8px, -0.7vw, -10px));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  }
  
  .product-card__img {
    height: clamp(160px, 15vw, 240px);
    margin-bottom: clamp(15px, 1.4vw, 22px);
  }
  
  .product-card__title {
    font-size: clamp(18px, 1.3vw, 24px);
    margin-bottom: clamp(15px, 1.4vw, 22px);
  }
  
  .product-card__button {
    padding: clamp(8px, 0.7vw, 12px) clamp(18px, 1.7vw, 26px);
    font-size: clamp(14px, 1vw, 18px);
    gap: clamp(5px, 0.5vw, 8px);
    margin-top: clamp(10px, 0.9vw, 15px);
  }
  
  .product-card__button-arrow {
    width: clamp(12px, 0.9vw, 16px);
  }
  
  .carousel__progress-container {
    width: clamp(200px, 18vw, 280px);
    height: clamp(7px, 0.6vw, 10px);
  }
  
  .carousel__progress-bar {
    height: clamp(11px, 0.9vw, 14px);
    width: clamp(45px, 4.5vw, 70px);
    top: clamp(-2px, -0.15vw, -2px);
  }
}

/* Desktop Large Screens (1600px-1919px) */
@media (min-width: 1600px) and (max-width: 1919px) {
  .about__text {
    max-width: 421px;
    padding: 6rem 0 0 0;
  }
  
  .about__text .section__title {
    font-size: 2.5rem;
  }
  
  .insights {
    padding: 80px 0;
  }
  
  .insights .section__title {
    font-size: 2.5rem;
  }
  
  .insights__grid {
    gap: 30px;
  }
  
  .insight-card__content {
    padding: 25px;
  }
  
  .insight-card__title {
    font-size: 1.4rem;
  }
  
  /* Enhanced Estimator CTA Section for 1600px-1919px */
  .estimator-cta {
    padding: clamp(75px, 4.5vw, 90px) 0;
  }
  
  .estimator-cta__container {
    padding: 0 clamp(0.8rem, 1.2vw, 1.8rem);
  }
  
  .estimator-cta__content {
    width: clamp(62%, 68vw, 74%);
  }
  
  .estimator-cta__title {
    font-size: clamp(2rem, 2rem + 0.6vw, 2.6rem);
    margin-bottom: clamp(45px, 2.8vw, 65px);
    line-height: 1.15;
  }
  
  .estimator-cta__corner-svg {
    width: clamp(24px, 1.4vw, 30px);
    height: clamp(24px, 1.4vw, 30px);
    margin-left: clamp(5px, 0.5vw, 7px);
  }
  
  .estimator-cta__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(13px, 0.9vw, 17px) clamp(26px, 1.8vw, 34px) !important;
    font-size: clamp(17px, 1.15vw, 22px) !important;
    min-width: clamp(200px, 19vw, 260px) !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
    background: var(--color-primary) !important;
    margin-top: clamp(5px, 0.5vw, 8px) !important;
    text-decoration: none !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
  }
  
  .estimator-cta__button:hover {
    background: #fff !important;
    color: var(--color-primary) !important;
  }
  
  .estimator-cta__button:hover .estimator-cta__button-arrow img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(82%) saturate(3718%) hue-rotate(343deg) brightness(87%) contrast(92%) !important;
  }
  
  .estimator-cta__button-arrow {
    margin-left: clamp(9px, 0.7vw, 13px) !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  
  .estimator-cta__button-arrow img {
    width: clamp(16px, 1.1vw, 22px) !important;
    aspect-ratio: 1/1 !important;
    object-fit: contain !important;
  }
}

/* Enhanced Ultra-Wide Screen Support for Homepage (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
  .hero {
    padding: clamp(80px, 5vw, 100px) 0 clamp(100px, 6vw, 120px);
  }
  
  .hero__title {
    font-size: clamp(3.2rem, 3.2rem + 0.8vw, 4.2rem);
  }
  
  .hero__form-card {
    max-width: clamp(550px, 55vw, 650px);
    padding: clamp(2.2rem, 2.2rem + 0.4vw, 3rem) clamp(1.2rem, 1.2rem + 0.3vw, 1.8rem);
  }
  
  .carousel__slide {
    min-width: clamp(260px, 18vw, 320px);
    max-width: clamp(350px, 24vw, 420px);
  }
  
  /* Enhanced Products in Demand Section for 1920px-2559px */
  .products-demand {
    padding: clamp(80px, 5vw, 100px) 0 !important;
  }
  
  .products-demand .container {
    max-width: var(--container-max-width) !important;
    width: var(--container-width) !important;
    margin: 0 0 0 clamp(2.5rem, 10vw, 10rem) !important;
    padding: 0 !important;
  }
  
  .products-demand__title {
    font-size: clamp(2.2rem, 2.2rem + 0.6vw, 2.8rem) !important;
    margin-bottom: clamp(50px, 3vw, 70px) !important;
    line-height: 1.15 !important;
    color: var(--color-primary) !important;
    text-transform: lowercase !important;
  }
  
  .products-demand__corner-svg {
    width: clamp(25px, 1.5vw, 35px) !important;
    height: clamp(25px, 1.5vw, 35px) !important;
    margin-left: clamp(5px, 0.5vw, 8px) !important;
  }
  
  .carousel__track {
    gap: clamp(30px, 2.5vw, 45px) !important;
    padding-bottom: clamp(30px, 2.5vw, 40px) !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .carousel__slide {
    width: clamp(280px, 24vw, 380px) !important;
    min-width: clamp(260px, 20vw, 340px) !important;
    max-width: clamp(380px, 28vw, 450px) !important;
  }
  
  .product-card {
    padding: clamp(30px, 2.5vw, 40px) clamp(25px, 2vw, 32px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }
  
  .product-card:hover {
    transform: translateY(clamp(-10px, -0.8vw, -14px)) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18) !important;
  }
  
  .product-card__img {
    height: clamp(200px, 18vw, 280px) !important;
    margin-bottom: clamp(20px, 1.8vw, 28px) !important;
    transition: transform 0.3s ease !important;
  }
  
  .product-card:hover .product-card__img {
    transform: scale(1.03) !important;
  }
  
  .product-card__title {
    font-size: clamp(22px, 1.6vw, 28px) !important;
    margin-bottom: clamp(20px, 1.8vw, 28px) !important;
    line-height: 1.3 !important;
  }
  
  .product-card__button {
    padding: clamp(12px, 1vw, 16px) clamp(24px, 2vw, 32px) !important;
    font-size: clamp(16px, 1.2vw, 22px) !important;
    gap: clamp(6px, 0.6vw, 10px) !important;
    margin-top: clamp(15px, 1.2vw, 20px) !important;
    transition: all 0.3s ease !important;
  }
  
  .product-card__button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(229, 57, 53, 0.4) !important;
  }
  
  .product-card__button-arrow {
    width: clamp(14px, 1.1vw, 20px) !important;
  }
  
  .carousel__progress-container {
    width: clamp(250px, 22vw, 350px) !important;
    height: clamp(10px, 0.8vw, 14px) !important;
  }
  
  .carousel__progress-bar {
    height: clamp(14px, 1.1vw, 18px) !important;
    width: clamp(60px, 5.5vw, 85px) !important;
    top: clamp(-2px, -0.15vw, -3px) !important;
    box-shadow: 0 3px 10px rgba(229, 57, 53, 0.4) !important;
  }
}

/* 4K and Ultra-Wide Homepage Optimizations (2560px - 3439px) */
@media (min-width: 2560px) and (max-width: 3439px) {
  .hero {
    padding: clamp(100px, 6vw, 140px) 0 clamp(120px, 7vw, 160px);
  }
  
  .hero__title {
    font-size: clamp(3.5rem, 3.5rem + 0.6vw, 4.8rem);
  }
  
  .hero__divider-svg {
    max-width: clamp(600px, 50vw, 700px);
  }
  
  .hero__form-card {
    max-width: clamp(650px, 60vw, 780px);
    padding: clamp(2.5rem, 2.5rem + 0.5vw, 3.5rem) clamp(2rem, 2rem + 0.3vw, 2.8rem);
    border-width: clamp(20px, 1.2vw, 24px);
  }
  
  .hero__form-corner {
    width: clamp(36px, 2.5vw, 40px);
    height: clamp(36px, 2.5vw, 40px);
    border-width: clamp(5px, 0.4vw, 6px);
  }
  
  .hero__form-title {
    font-size: clamp(24px, 1.6vw, 28px);
    margin-bottom: clamp(15px, 1.2vw, 18px);
  }
  
  .hero__form-desc {
    font-size: clamp(12px, 0.8vw, 14px);
    margin-bottom: clamp(20px, 1.5vw, 24px);
  }
  
  .hero__form {
    gap: clamp(20px, 1.5vw, 24px);
  }
  
  .hero__form input,
  .hero__form textarea {
    padding: clamp(12px, 1vw, 15px) clamp(16px, 1.2vw, 20px);
    font-size: clamp(0.9rem, 0.9rem + 0.1vw, 1rem);
  }
  
  .hero__form-button {
    padding: clamp(14px, 1vw, 16px) clamp(24px, 2vw, 32px);
    font-size: clamp(0.95rem, 0.95rem + 0.1vw, 1.1rem);
  }
  
  .carousel__slide {
    min-width: clamp(280px, 18vw, 320px);
    max-width: clamp(380px, 25vw, 420px);
  }

  /* Enhanced Insights Section for 2560px-3439px */
  .insights {
    padding: clamp(100px, 6vw, 130px) 0;
  }

  .insights .section__title {
    font-size: clamp(2.8rem, 2.8rem + 0.8vw, 3.6rem);
    margin-bottom: clamp(60px, 4vw, 90px);
    line-height: 1.15;
    color: var(--color-primary);
    text-transform: lowercase;
  }

  .insights__corner-svg {
    width: clamp(32px, 2.2vw, 45px);
    height: clamp(32px, 2.2vw, 45px);
    margin-left: clamp(8px, 0.6vw, 12px);
    vertical-align: top;
  }

  .insights__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(45px, 3vw, 65px);
    width: 100%;
  }

  .insight-card {
    display: flex;
    overflow: hidden;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: clamp(350px, 25vw, 450px);
  }

  .insight-card:hover {
    transform: translateY(clamp(-14px, -1vw, -20px));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  }

  .insight-card__image {
    width: 40%;
    min-width: clamp(280px, 18vw, 350px);
    overflow: hidden;
  }

  .insight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .insight-card:hover .insight-card__image img {
    transform: scale(1.1);
  }

  .insight-card__content {
    flex: 1;
    padding: clamp(35px, 2.5vw, 48px);
    background-color: #232323;
    color: #fff;
    display: flex;
    flex-direction: column;
  }

  .insight-card__title {
    color: #fff;
    font-size: clamp(1.5rem, 1.5rem + 0.3vw, 1.9rem);
    margin-bottom: clamp(18px, 1.3vw, 26px);
    line-height: 1.3;
    font-weight: 600;
  }

  .insight-card__desc {
    color: #e0e0e0;
    font-size: clamp(1.1rem, 1.1rem + 0.15vw, 1.35rem);
    line-height: 1.5;
    margin-bottom: clamp(28px, 2vw, 38px);
    flex-grow: 1;
  }

  .insight-card__button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: #fff;
    font-size: clamp(1.05rem, 1.05rem + 0.12vw, 1.25rem);
    font-weight: 500;
    padding: clamp(14px, 1vw, 18px) clamp(26px, 1.8vw, 34px);
    border-radius: 0;
    text-decoration: none;
    align-self: flex-start;
    border: none;
    transition: all 0.3s ease;
  }

  .insight-card__button:hover {
    background-color: #d42836;
    color: #fff;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.5);
  }

  .insight-card__button-arrow {
    margin-left: clamp(12px, 0.8vw, 16px);
    width: clamp(16px, 1.2vw, 22px);
    height: clamp(16px, 1.2vw, 22px);
    transition: transform 0.3s ease;
  }

  .insight-card__button:hover .insight-card__button-arrow {
    transform: translateX(5px);
  }
  
  /* Enhanced Products in Demand Section for 2560px-3439px */
  .products-demand {
    padding: clamp(100px, 6vw, 140px) 0 !important;
  }
  
  .products-demand .container {
    max-width: var(--ultra-wide-container-max) !important;
    width: var(--container-width) !important;
    margin: 0 0 0 clamp(3rem, 12vw, 12rem) !important;
    padding: 0 !important;
  }
  
  .products-demand__title {
    font-size: clamp(2.4rem, 2.4rem + 0.8vw, 3.2rem) !important;
    margin-bottom: clamp(70px, 4vw, 100px) !important;
    line-height: 1.1 !important;
  }
  
  .products-demand__corner-svg {
    width: clamp(35px, 2vw, 45px) !important;
    height: clamp(35px, 2vw, 45px) !important;
    margin-left: clamp(6px, 0.6vw, 10px) !important;
  }
  
  .carousel__track {
    gap: clamp(40px, 3.2vw, 55px) !important;
    padding-bottom: clamp(40px, 3.2vw, 50px) !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .carousel__slide {
    width: clamp(320px, 26vw, 420px) !important;
    min-width: clamp(300px, 22vw, 380px) !important;
    max-width: clamp(420px, 30vw, 520px) !important;
  }
  
  .product-card {
    padding: clamp(35px, 3vw, 50px) clamp(30px, 2.5vw, 40px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
  }
  
  .product-card:hover {
    transform: translateY(clamp(-12px, -1vw, -16px)) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2) !important;
  }
  
  .product-card__img {
    height: clamp(240px, 20vw, 320px) !important;
    margin-bottom: clamp(25px, 2.2vw, 35px) !important;
  }
  
  .product-card:hover .product-card__img {
    transform: scale(1.04) !important;
  }
  
  .product-card__title {
    font-size: clamp(26px, 1.8vw, 34px) !important;
    margin-bottom: clamp(25px, 2.2vw, 35px) !important;
  }
  
  .product-card__button {
    padding: clamp(14px, 1.2vw, 20px) clamp(28px, 2.3vw, 38px) !important;
    font-size: clamp(18px, 1.4vw, 26px) !important;
    gap: clamp(8px, 0.7vw, 12px) !important;
    margin-top: clamp(18px, 1.5vw, 25px) !important;
  }
  
  .product-card__button:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.5) !important;
  }
  
  .product-card__button-arrow {
    width: clamp(16px, 1.3vw, 24px) !important;
  }
  
  .carousel__progress-container {
    width: clamp(300px, 26vw, 400px) !important;
    height: clamp(12px, 1vw, 16px) !important;
  }
  
  .carousel__progress-bar {
    height: clamp(16px, 1.3vw, 22px) !important;
    width: clamp(75px, 6.5vw, 105px) !important;
    top: clamp(-2px, -0.15vw, -3px) !important;
  }
  
  .product-card__img {
    height: clamp(240px, 15vw, 280px);
  }
  
  .product-card__title {
    font-size: clamp(26px, 1.6vw, 30px);
  }
  
  .features__card {
    height: clamp(320px, 20vw, 380px);
  }
  
  .features__card-title {
    font-size: clamp(28px, 1.8vw, 34px);
    bottom: clamp(30px, 2vw, 40px);
    left: clamp(30px, 2vw, 40px);
  }
}

/* Ultra-Wide Monitor Homepage Support (3440px+) */
@media (min-width: 3440px) {
  .hero {
    padding: clamp(120px, 7vw, 160px) 0 clamp(140px, 8vw, 180px);
  }
  
  .hero__title {
    font-size: clamp(4rem, 4rem + 0.4vw, 5.2rem);
  }
  
  .hero__form-card {
    max-width: clamp(750px, 55vw, 900px);
    padding: clamp(3rem, 3rem + 0.4vw, 4rem) clamp(2.5rem, 2.5rem + 0.3vw, 3.2rem);
    border-width: clamp(22px, 1.1vw, 26px);
  }
  
  .hero__partners {
    gap: clamp(2rem, 2rem + 1vw, 4rem);
  }
  
  .hero__partners-2 {
    gap: clamp(2rem, 2rem + 1vw, 4rem);
  }
  
  .hero__partner-logo {
    max-height: clamp(80px, 6vw, 110px);
    max-width: clamp(120px, 8vw, 160px);
  }
  
  .carousel__slide {
    min-width: clamp(320px, 16vw, 380px);
    max-width: clamp(450px, 22vw, 520px);
  }

  /* Enhanced Insights Section for 3440px+ */
  .insights {
    padding: clamp(120px, 7vw, 160px) 0;
  }

  .insights .section__title {
    font-size: clamp(3.2rem, 3.2rem + 1vw, 4.2rem);
    margin-bottom: clamp(80px, 5vw, 120px);
    line-height: 1.15;
    color: var(--color-primary);
    text-transform: lowercase;
  }

  .insights__corner-svg {
    width: clamp(40px, 2.5vw, 55px);
    height: clamp(40px, 2.5vw, 55px);
    margin-left: clamp(10px, 0.8vw, 16px);
    vertical-align: top;
  }

  .insights__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(60px, 4vw, 85px);
    width: 100%;
  }

  .insight-card {
    display: flex;
    overflow: hidden;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: clamp(450px, 30vw, 550px);
  }

  .insight-card:hover {
    transform: translateY(clamp(-18px, -1.2vw, -24px));
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  }

  .insight-card__image {
    width: 40%;
    min-width: clamp(350px, 22vw, 450px);
    overflow: hidden;
  }

  .insight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .insight-card:hover .insight-card__image img {
    transform: scale(1.12);
  }

  .insight-card__content {
    flex: 1;
    padding: clamp(45px, 3vw, 60px);
    background-color: #232323;
    color: #fff;
    display: flex;
    flex-direction: column;
  }

  .insight-card__title {
    color: #fff;
    font-size: clamp(1.8rem, 1.8rem + 0.4vw, 2.3rem);
    margin-bottom: clamp(24px, 1.6vw, 32px);
    line-height: 1.3;
    font-weight: 600;
  }

  .insight-card__desc {
    color: #e0e0e0;
    font-size: clamp(1.25rem, 1.25rem + 0.2vw, 1.55rem);
    line-height: 1.5;
    margin-bottom: clamp(35px, 2.5vw, 45px);
    flex-grow: 1;
  }

  .insight-card__button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: #fff;
    font-size: clamp(1.2rem, 1.2rem + 0.15vw, 1.45rem);
    font-weight: 500;
    padding: clamp(16px, 1.2vw, 22px) clamp(32px, 2.2vw, 42px);
    border-radius: 0;
    text-decoration: none;
    align-self: flex-start;
    border: none;
    transition: all 0.3s ease;
  }

  .insight-card__button:hover {
    background-color: #d42836;
    color: #fff;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.6);
  }

  .insight-card__button-arrow {
    margin-left: clamp(14px, 1vw, 20px);
    width: clamp(20px, 1.4vw, 26px);
    height: clamp(20px, 1.4vw, 26px);
    transition: transform 0.3s ease;
  }

  .insight-card__button:hover .insight-card__button-arrow {
    transform: translateX(6px);
  }
  
  /* Enhanced Products in Demand Section for 3440px+ */
  .products-demand {
    padding: clamp(120px, 7vw, 160px) 0 !important;
  }
  
  .products-demand .container {
    max-width: clamp(2000px, 75vw, 2800px) !important;
    width: var(--container-width) !important;
    margin: 0 0 0 clamp(4rem, 15vw, 15rem) !important;
    padding: 0 !important;
  }
  
  .products-demand__title {
    font-size: clamp(2.6rem, 2.6rem + 1vw, 3.8rem) !important;
    margin-bottom: clamp(90px, 4.5vw, 130px) !important;
    line-height: 1.05 !important;
  }
  
  .products-demand__corner-svg {
    width: clamp(45px, 2.5vw, 60px) !important;
    height: clamp(45px, 2.5vw, 60px) !important;
    margin-left: clamp(8px, 0.8vw, 12px) !important;
  }
  
  .carousel__track {
    gap: clamp(50px, 4vw, 70px) !important;
    padding-bottom: clamp(50px, 4vw, 65px) !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .carousel__slide {
    width: clamp(380px, 28vw, 480px) !important;
    min-width: clamp(350px, 24vw, 420px) !important;
    max-width: clamp(480px, 32vw, 580px) !important;
  }
  
  .product-card {
    padding: clamp(40px, 3.5vw, 60px) clamp(35px, 3vw, 50px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  }
  
  .product-card:hover {
    transform: translateY(clamp(-15px, -1.2vw, -20px)) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) !important;
  }
  
  .product-card__img {
    height: clamp(280px, 22vw, 380px) !important;
    margin-bottom: clamp(30px, 2.5vw, 45px) !important;
  }
  
  .product-card:hover .product-card__img {
    transform: scale(1.05) !important;
  }
  
  .product-card__title {
    font-size: clamp(30px, 2vw, 40px) !important;
    margin-bottom: clamp(30px, 2.5vw, 45px) !important;
  }
  
  .product-card__button {
    padding: clamp(16px, 1.4vw, 24px) clamp(32px, 2.6vw, 44px) !important;
    font-size: clamp(20px, 1.6vw, 30px) !important;
    gap: clamp(10px, 0.8vw, 16px) !important;
    margin-top: clamp(20px, 1.7vw, 30px) !important;
  }
  
  .product-card__button:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.6) !important;
  }
  
  .product-card__button-arrow {
    width: clamp(18px, 1.5vw, 28px) !important;
  }
  
  .carousel__progress-container {
    width: clamp(350px, 30vw, 450px) !important;
    height: clamp(14px, 1.2vw, 20px) !important;
  }
  
  .carousel__progress-bar {
    height: clamp(18px, 1.5vw, 26px) !important;
    width: clamp(90px, 7.5vw, 125px) !important;
    top: clamp(-2px, -0.15vw, -3px) !important;
  }
  
  .features__card {
    height: clamp(350px, 20vw, 400px);
  }
  
  .features__card-title {
    font-size: clamp(32px, 1.6vw, 36px);
    bottom: clamp(40px, 2.2vw, 50px);
    left: clamp(40px, 2.2vw, 50px);
  }
  
  /* Estimator CTA Section - Ultra-Wide Support */
  .estimator-cta {
    padding: clamp(120px, 7vw, 160px) 0 !important;
  }
  
  .estimator-cta__container {
    padding: 0 clamp(2rem, 2.5vw, 4rem) !important;
  }
  
  .estimator-cta__content {
    width: clamp(65%, 70vw, 95%) !important;
  }
  
  .estimator-cta__title {
    font-size: clamp(2.6rem, 2.6rem + 1vw, 3.8rem) !important;
    margin-bottom: clamp(90px, 4.5vw, 130px) !important;
    line-height: 1.05 !important;
  }
  
  .estimator-cta__corner-svg {
    width: clamp(45px, 2.5vw, 60px) !important;
    height: clamp(45px, 2.5vw, 60px) !important;
    margin-left: clamp(8px, 0.8vw, 12px) !important;
  }
  
  .estimator-cta__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(18px, 1.3vw, 24px) clamp(42px, 2.8vw, 56px) !important;
    font-size: clamp(32px, 1.8vw, 40px) !important;
    min-width: clamp(300px, 28vw, 400px) !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
    background: var(--color-primary) !important;
    margin-top: clamp(5px, 0.5vw, 8px) !important;
    text-decoration: none !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
  }
  
  .estimator-cta__button:hover {
    background: #fff !important;
    color: var(--color-primary) !important;
  }
  
  .estimator-cta__button:hover .estimator-cta__button-arrow img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(82%) saturate(3718%) hue-rotate(343deg) brightness(87%) contrast(92%) !important;
  }
  
  .estimator-cta__button-arrow {
    margin-left: clamp(14px, 1vw, 18px) !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  
  .estimator-cta__button-arrow img {
    width: clamp(26px, 1.8vw, 34px) !important;
    aspect-ratio: 1/1 !important;
    object-fit: contain !important;
  }
  
  .estimator-cta__image {
    width: clamp(45%, 50vw, 55%) !important;
  }
}

/* ================= COMPREHENSIVE FEATURES SECTION DESKTOP OPTIMIZATION ================= */

/* Full HD to 4K Range (1920px - 2559px) - Enhanced Features Section */
@media (min-width: 1920px) and (max-width: 2559px) {
  .features {
    padding: clamp(80px, 5vw, 100px) 0 !important;
    background: #fff !important;
    overflow: hidden !important;
  }
  
  .features .container {
    max-width: var(--container-max-width) !important;
    width: var(--container-width) !important;
    margin: 0 auto !important;
    padding: 0 clamp(1rem, 1.5vw, 2rem) !important; /* Enhanced container padding for large screens */
  }
  
  .features__top {
    display: flex !important;
    margin-bottom: clamp(50px, 3vw, 70px) !important; /* Responsive bottom margin */
    gap: clamp(50px, 3.5vw, 80px) !important; /* Enhanced gap between header and video */
  }
  
  .features__header {
    flex: 0 0 42% !important; /* Slightly wider header area */
  }
  
  .features__title {
    color: var(--color-primary) !important;
    text-transform: lowercase !important;
    position: relative !important;
    margin-top: clamp(50px, 3vw, 70px) !important; /* Responsive top margin */
    margin-bottom: clamp(40px, 2.5vw, 60px) !important; /* Responsive bottom margin */
    display: inline-block !important;
    line-height: 1.15 !important; /* Optimized line height for large text */
    font-size: clamp(2.5rem, 2.5rem + 0.8vw, 3.5rem) !important; /* Larger title for desktop */
    font-weight: 700 !important;
  }
  
  .features__corner-svg {
    position: absolute !important;
    top: clamp(-0.8rem, -0.8rem - 0.3vw, -1.2rem) !important; /* Responsive positioning */
    right: clamp(-1.2rem, -1.2rem - 0.4vw, -1.8rem) !important; /* Responsive positioning */
    width: clamp(25px, 1.5vw, 35px) !important; /* Larger corner SVG */
    height: auto !important;
  }
  
  .features__video {
    flex: 0 0 58% !important; /* Balanced video area */
    position: relative !important;
    height: clamp(380px, 22vw, 480px) !important; /* Responsive video height */
    overflow: hidden !important;
    border-radius: 0 !important;
    cursor: pointer !important;
  }
  
  .features__video-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .features__video-overlay {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to top, rgba(229, 57, 53, 0.95) 0%, rgba(229, 57, 53, 0) 60%) !important;
    z-index: 1 !important;
    transition: transform 0.3s ease !important;
    transform-origin: bottom !important;
    transform: scaleY(1) !important;
  }
  
  .features__video:hover .features__video-overlay {
    transform: scaleY(1.2) !important;
  }
  
  .features__video-title {
    position: absolute !important;
    bottom: clamp(35px, 2.5vw, 45px) !important; /* Balanced spacing from bottom */
    left: clamp(35px, 2.2vw, 50px) !important; /* Responsive positioning */
    color: #fff !important;
    font-size: clamp(32px, 2vw, 42px) !important; /* Larger video title */
    font-weight: 600 !important;
    z-index: 2 !important;
    margin: 0 !important;
    text-transform: lowercase !important;
    transition: transform 0.3s ease !important;
    line-height: 1.1 !important;
  }
  
  .features__video-button {
    position: absolute !important;
    bottom: -80px !important; /* Start position for animation - increased for better hiding */
    left: clamp(35px, 2.2vw, 50px) !important; /* Responsive positioning */
    color: #fff !important;
    background: #282828 !important;
    padding: clamp(10px, 0.8vw, 14px) clamp(24px, 1.8vw, 32px) !important; /* Responsive padding */
    border-radius: 0 !important;
    font-size: clamp(18px, 1.2vw, 24px) !important; /* Larger button text */
    font-weight: 500 !important;
    z-index: 4 !important;
    text-decoration: none !important;
    transition: bottom 0.3s ease !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: clamp(6px, 0.5vw, 10px) !important; /* Gap between text and arrow */
  }
  
  .features__video:hover .features__video-title {
    transform: translateY(clamp(-80px, -2vw, -85px)) !important; /* Optimized movement */
  }
  
  .features__video:hover .features__video-button {
    bottom: clamp(35px, 2.4vw, 50px) !important; /* Optimal spacing between title and button */
  }
  
  .features__video-link {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 3 !important;
  }
  
  .features__bottom {
    display: flex !important;
    gap: clamp(35px, 2.5vw, 50px) !important; /* Enhanced gap between cards */
    width: 100% !important;
  }
  
  .features__card {
    flex: 1 !important;
    position: relative !important;
    height: clamp(320px, 18vw, 420px) !important; /* Responsive card height */
    overflow: hidden !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    display: block !important;
    text-decoration: none !important;
  }
  
  .features__card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  .features__card-overlay {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to top, rgba(229, 57, 53, 0.95) 0%, rgba(229, 57, 53, 0) 60%) !important;
    z-index: 1 !important;
    transition: transform 0.3s ease !important;
    transform-origin: bottom !important;
    transform: scaleY(1) !important;
  }
  
  .features__card:hover .features__card-overlay {
    transform: scaleY(1.5) !important;
  }
  
  .features__card-title {
    position: absolute !important;
    bottom: clamp(30px, 2.2vw, 40px) !important; /* Balanced spacing from bottom */
    left: clamp(25px, 1.8vw, 35px) !important; /* Responsive positioning */
    color: #fff !important;
    font-size: clamp(26px, 1.6vw, 34px) !important; /* Larger card titles */
    font-weight: 600 !important;
    z-index: 2 !important;
    margin: 0 !important;
    text-transform: lowercase !important;
    transition: transform 0.3s ease !important;
    max-width: clamp(140px, 10vw, 180px) !important; /* Responsive max width */
    line-height: 1.2 !important;
  }
  
  .features__card-button {
    position: absolute !important;
    bottom: -80px !important; /* Start position for animation - increased for better hiding */
    left: clamp(25px, 1.8vw, 35px) !important; /* Responsive positioning */
    color: #fff !important;
    background: #282828 !important;
    padding: clamp(10px, 0.8vw, 14px) clamp(18px, 1.4vw, 24px) !important; /* Responsive padding */
    border-radius: 0 !important;
    font-size: clamp(16px, 1vw, 20px) !important; /* Larger button text */
    font-weight: 500 !important;
    z-index: 2 !important;
    transition: bottom 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: clamp(6px, 0.5vw, 10px) !important; /* Gap between text and arrow */
  }
  
  .features__button-arrow {
    margin-left: 0 !important; /* Handled by flex gap */
    display: inline-block !important;
    width: clamp(14px, 1vw, 18px) !important; /* Larger arrows */
    height: auto !important;
    flex-shrink: 0 !important; /* Prevent shrinking */
  }
  
  .features__card:hover .features__card-title {
    transform: translateY(clamp(-60px, -2vw, -80px)) !important; /* Optimized movement */
  }
  
  .features__card:hover .features__card-button {
    bottom: clamp(30px, 2vw, 40px) !important; /* Optimal spacing between title and button */
  }
  
  /* Estimator CTA Section - Full HD to 4K Support */
  .estimator-cta {
    padding: clamp(80px, 5vw, 100px) 0 !important;
    background: var(--color-secondary) !important;
    color: #fff !important;
    overflow: hidden !important;
    position: relative !important;
  }
  
  .estimator-cta__container {
    max-width: var(--container-max-width) !important;
    width: var(--container-width) !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 3 !important;
    padding: 0 clamp(1rem, 1.5vw, 2rem) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  
  .estimator-cta__content {
    width: clamp(58%, 62vw, 68%) !important;
    text-align: left !important;
    position: relative !important;
    z-index: 5 !important;
    flex: 1 1 62% !important;
    min-width: 0 !important;
  }
  
  .estimator-cta__title {
    font-size: clamp(2.2rem, 2.2rem + 0.6vw, 2.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: clamp(50px, 3vw, 70px) !important;
    position: relative !important;
    width: 100% !important;
    color: #fff !important;
    text-transform: lowercase !important;
  }
  
  .estimator-cta__corner-svg {
    display: inline-block !important;
    width: clamp(25px, 1.5vw, 35px) !important;
    height: clamp(25px, 1.5vw, 35px) !important;
    margin-left: clamp(5px, 0.5vw, 8px) !important;
    vertical-align: top !important;
  }
  
  .estimator-cta__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(14px, 1vw, 18px) clamp(28px, 2vw, 36px) !important;
    min-width: clamp(220px, 20vw, 280px) !important;
    font-weight: 700 !important;
    font-size: clamp(18px, 1.2vw, 24px) !important;
    border-radius: 0 !important;
    background: var(--color-primary) !important;
    margin-top: clamp(5px, 0.5vw, 8px) !important;
    text-decoration: none !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
  }
  
  .estimator-cta__button:hover {
    background: #fff !important;
    color: var(--color-primary) !important;
  }
  
  .estimator-cta__button:hover .estimator-cta__button-arrow img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(82%) saturate(3718%) hue-rotate(343deg) brightness(87%) contrast(92%) !important;
  }
  
  .estimator-cta__button-arrow {
    margin-left: clamp(10px, 0.8vw, 14px) !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  
  .estimator-cta__button-arrow img {
    width: clamp(18px, 1.2vw, 24px) !important;
    aspect-ratio: 1/1 !important;
    object-fit: contain !important;
  }
  
  .estimator-cta__image {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 100% !important;
    width: clamp(40%, 45vw, 50%) !important;
    z-index: 1 !important;
    overflow: hidden !important;
  }
  
  .estimator-cta__svg {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    height: 100% !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
}

/* 4K and Ultra-Wide Range (2560px - 3439px) - Enhanced Features Section */
@media (min-width: 2560px) and (max-width: 3439px) {
  .features {
    padding: clamp(100px, 6vw, 140px) 0 !important;
  }
  
  .features .container {
    padding: 0 clamp(1.5rem, 2vw, 3rem) !important; /* Enhanced container padding for 4K */
  }
  
  .features__top {
    margin-bottom: clamp(70px, 4vw, 100px) !important;
    gap: clamp(80px, 4.5vw, 120px) !important; /* Enhanced gap for 4K */
  }
  
  .features__header {
    flex: 0 0 44% !important; /* Wider header area for 4K */
  }
  
  .features__title {
    margin-top: clamp(70px, 4vw, 100px) !important;
    margin-bottom: clamp(60px, 3.5vw, 90px) !important;
    font-size: clamp(3rem, 3rem + 1vw, 4.5rem) !important; /* Larger title for 4K */
    line-height: 1.1 !important;
  }
  
  .features__corner-svg {
    top: clamp(-1rem, -1rem - 0.4vw, -1.6rem) !important;
    right: clamp(-1.5rem, -1.5rem - 0.5vw, -2.2rem) !important;
    width: clamp(35px, 2vw, 45px) !important; /* Larger SVG for 4K */
  }
  
  .features__video {
    flex: 0 0 56% !important;
    height: clamp(480px, 26vw, 600px) !important; /* Larger video for 4K */
  }
  
  .features__video-title {
    bottom: clamp(35px, 2.5vw, 50px) !important;
    left: clamp(45px, 2.8vw, 65px) !important;
    font-size: clamp(42px, 2.5vw, 56px) !important; /* Larger video title for 4K */
  }
  
  .features__video-button {
    bottom: -120px !important;
    left: clamp(45px, 2.8vw, 65px) !important;
    padding: clamp(14px, 1vw, 18px) clamp(32px, 2.2vw, 42px) !important;
    font-size: clamp(24px, 1.5vw, 32px) !important; /* Larger button for 4K */
    gap: clamp(8px, 0.6vw, 12px) !important;
  }
  
  .features__video:hover .features__video-title {
    transform: translateY(clamp(-90px, -4.5vw, -110px)) !important;
  }
  
  .features__video:hover .features__video-button {
    bottom: clamp(30px, 2vw, 45px) !important;
  }
  
  .features__bottom {
    gap: clamp(50px, 3.2vw, 70px) !important; /* Enhanced gap for 4K */
  }
  
  .features__card {
    height: clamp(420px, 22vw, 540px) !important; /* Larger cards for 4K */
  }
  
  .features__card-title {
    bottom: clamp(30px, 2vw, 40px) !important;
    left: clamp(35px, 2.4vw, 50px) !important;
    font-size: clamp(34px, 2vw, 44px) !important; /* Larger titles for 4K */
    max-width: clamp(180px, 12vw, 240px) !important;
  }
  
  .features__card-button {
    bottom: -120px !important;
    left: clamp(35px, 2.4vw, 50px) !important;
    padding: clamp(14px, 1vw, 18px) clamp(24px, 1.8vw, 32px) !important;
    font-size: clamp(20px, 1.3vw, 26px) !important; /* Larger button for 4K */
    gap: clamp(8px, 0.6vw, 12px) !important;
  }
  
  .features__button-arrow {
    width: clamp(18px, 1.3vw, 24px) !important; /* Larger arrows for 4K */
  }
  
  .features__card:hover .features__card-title {
    transform: translateY(clamp(-80px, -4.5vw, -100px)) !important;
  }
  
  .features__card:hover .features__card-button {
    bottom: clamp(20px, 1.5vw, 30px) !important;
  }
  
  /* Estimator CTA Section - 4K Ultra-Wide Support */
  .estimator-cta {
    padding: clamp(100px, 6vw, 140px) 0 !important;
  }
  
  .estimator-cta__container {
    padding: 0 clamp(1.5rem, 2vw, 3rem) !important;
  }
  
  .estimator-cta__content {
    width: clamp(62%, 67vw, 90%) !important;
  }
  
  .estimator-cta__title {
    font-size: clamp(2.4rem, 2.4rem + 0.8vw, 3.2rem) !important;
    margin-bottom: clamp(70px, 4vw, 100px) !important;
    line-height: 1.1 !important;
  }
  
  .estimator-cta__corner-svg {
    width: clamp(35px, 2vw, 45px) !important;
    height: clamp(35px, 2vw, 45px) !important;
    margin-left: clamp(6px, 0.6vw, 10px) !important;
  }
  
  .estimator-cta__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(16px, 1vw, 20px) clamp(32px, 2.2vw, 42px) !important;
    font-size: clamp(24px, 1.5vw, 32px) !important;
    min-width: clamp(260px, 24vw, 340px) !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
    background: var(--color-primary) !important;
    margin-top: clamp(5px, 0.5vw, 8px) !important;
    text-decoration: none !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
  }
  
  .estimator-cta__button:hover {
    background: #fff !important;
    color: var(--color-primary) !important;
  }
  
  .estimator-cta__button:hover .estimator-cta__button-arrow img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(82%) saturate(3718%) hue-rotate(343deg) brightness(87%) contrast(92%) !important;
  }
  
  .estimator-cta__button-arrow {
    margin-left: clamp(12px, 0.8vw, 16px) !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  
  .estimator-cta__button-arrow img {
    width: clamp(22px, 1.5vw, 28px) !important;
    aspect-ratio: 1/1 !important;
    object-fit: contain !important;
  }
  
  .estimator-cta__image {
    width: clamp(42%, 47vw, 52%) !important;
  }
}

/* Ultra-Wide Monitors (3440px+) - Enhanced Features Section */
@media (min-width: 3440px) {
  .features {
    padding: clamp(120px, 7vw, 160px) 0 !important;
  }
  
  .features .container {
    padding: 0 clamp(2rem, 2.5vw, 4rem) !important; /* Maximum container padding */
  }
  
  .features__top {
    margin-bottom: clamp(100px, 5vw, 140px) !important;
    gap: clamp(120px, 6vw, 160px) !important; /* Maximum gap for ultra-wide */
  }
  
  .features__header {
    flex: 0 0 46% !important; /* Maximum header width for ultra-wide */
  }
  
  .features__title {
    margin-top: clamp(100px, 5vw, 140px) !important;
    margin-bottom: clamp(90px, 4.5vw, 130px) !important;
    font-size: clamp(4rem, 4rem + 1.2vw, 6rem) !important; /* Maximum title size */
    line-height: 1.05 !important;
  }
  
  .features__corner-svg {
    top: clamp(-1.4rem, -1.4rem - 0.6vw, -2.2rem) !important;
    right: clamp(-2rem, -2rem - 0.7vw, -3rem) !important;
    width: clamp(45px, 2.5vw, 60px) !important; /* Maximum SVG size */
  }
  
  .features__video {
    flex: 0 0 54% !important;
    height: clamp(600px, 30vw, 750px) !important; /* Maximum video height */
  }
  
  .features__video-title {
    bottom: clamp(46px, 2.5vw, 60px) !important;
    left: clamp(65px, 3.5vw, 90px) !important;
    font-size: clamp(56px, 3vw, 72px) !important; /* Maximum video title */
  }
  
  .features__video-button {
    bottom: -140px !important;
    left: clamp(65px, 3.5vw, 90px) !important;
    padding: clamp(18px, 1.3vw, 24px) clamp(42px, 2.8vw, 56px) !important;
    font-size: clamp(32px, 1.8vw, 40px) !important; /* Maximum button size */
    gap: clamp(12px, 0.8vw, 16px) !important;
  }
  
  .features__video:hover .features__video-title {
    transform: translateY(clamp(-120px, -6vw, -140px)) !important;
  }
  
  .features__video:hover .features__video-button {
    bottom: clamp(35px, 2.2vw, 55px) !important;
  }
  
  .features__bottom {
    gap: clamp(70px, 4vw, 100px) !important; /* Maximum gap for ultra-wide */
  }
  
  .features__card {
    height: clamp(540px, 26vw, 700px) !important; /* Maximum card height */
  }
  
  .features__card-title {
    bottom: clamp(42px, 2.5vw, 59px) !important;
    left: clamp(50px, 3vw, 70px) !important;
    font-size: clamp(44px, 2.5vw, 56px) !important; /* Maximum title size */
    max-width: clamp(240px, 15vw, 320px) !important;
  }
  
  .features__card-button {
    bottom: -140px !important;
    left: clamp(50px, 3vw, 70px) !important;
    padding: clamp(18px, 1.3vw, 24px) clamp(32px, 2.2vw, 42px) !important;
    font-size: clamp(26px, 1.6vw, 34px) !important; /* Maximum button size */
    gap: clamp(12px, 0.8vw, 16px) !important;
  }
  
  .features__button-arrow {
    width: clamp(24px, 1.6vw, 32px) !important; /* Maximum arrow size */
  }
  
  .features__card:hover .features__card-title {
    transform: translateY(clamp(-100px, -6vw, -120px)) !important;
  }
  
  .features__card:hover .features__card-button {
    bottom: clamp(25px, 1.8vw, 40px) !important;
  }
}

/* Optimize form content for smaller desktop screens (1200px - 1500px) */
@media (min-width: 1200px) and (max-width: 1500px) {
  .hero__form-card {
    padding: calc(1.4rem + 0.3vw) calc(0.8rem + 0.15vw); /* Reduced left/right padding */
  }
  
  .hero__form-title {
    font-size: 22px; /* Reduced from 26px */
    margin-bottom: 12px; /* Reduced from 15px */
  }
  
  .hero__form-desc {
    font-size: 13px; /* Reduced from 14px */
    margin-bottom: 18px; /* Reduced from 20px */
    max-width: 90%; /* Increased from 85% for better text flow */
  }
}

.hero__left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 10px;
}

.hero__title {
  font-size: clamp(2.8rem, 2.8rem + 1vw, 4.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  /* Better text rendering for large screens */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero__divider {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.hero__divider-svg {
  max-width: clamp(440px, 50vw, 600px); /* Fluid scaling for screens below 1920px */
  width: 100%;
  height: auto;
}

/* Override base divider constraints for large desktop screens */
@media (min-width: 1920px) {
  .hero__divider-svg {
    width: 700px !important; /* Fixed width that works properly for large desktop screens */
    max-width: none !important; /* Remove max-width constraint */
  }
}

.hero__subtitle-group {
  margin-top: var(--space-sm);
}

.hero__subtitle {
  font-size: clamp(1.1rem, 1.1rem + 0.1vw, 1.4rem);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.hero__partners {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw + 0.5rem, 3rem); /* Responsive gap: 1rem minimum, scales with viewport */
  margin-top: var(--space-xs);
}

.hero__partners-2 {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw + 0.5rem, 3rem); /* Responsive gap: 1rem minimum, scales with viewport */
  margin-top: 1rem;
}

.hero__partner-logo {
  max-height: clamp(60px, 6vw + 20px, 85px); /* Responsive height: 60px minimum, scales to 85px */
  max-width: clamp(90px, 8vw + 30px, 125px); /* Responsive width: 90px minimum, scales to 125px */
  object-fit: contain;
}

.hero__right {
  flex: 1 1 45%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 10px;
  position: relative;
}

.hero__form-card {
  position: relative; /* Added for proper positioning of pseudo-elements */
  background: #fff;
  border: 16px solid #282828;
  border-radius: 0;
  padding: calc(1.8rem + 0.4vw) calc(1rem + 0.2vw);
  max-width: clamp(480px, 45vw, 550px); /* Fluid scaling for better utilization */
  width: 100%;
  z-index: 1;
}

.hero__form-card::before {
  content: '';
  position: absolute;
  box-shadow: none;
  bottom: -17px; /* Controls the vertical overlap */
  right: -16px; /* Positions the white block to the left of the black */
  width: 15px; /* Width of the white block */
  height: 15px; /* Height (thickness) of the line */
  background-color: #ffffff; /* White color */
  z-index: 2; /* Higher z-index to overlay the border and the black part */
}

.hero__form-card::after {
  content: '';
  position: absolute;
  bottom: -17px; /* Matches the vertical position of the white block */
  right: -31px; /* Positions the black block to the right, creating overlap */
  width: 15px; /* Width of the black block */
  height: 15px; /* Height (thickness) of the line */
  background-color: #282828; /* Black color (matching border) */
  z-index: 1; /* Lower z-index than the white part, above the form */
}

.hero__form-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 5px solid #222;
  background: transparent;
  z-index: 2;
}

.hero__form-corner--tl {
  top: -5px;
  left: -5px;
  border-bottom: none;
  border-right: none;
}

.hero__form-corner--tr {
  top: -5px;
  right: -5px;
  border-bottom: none;
  border-left: none;
}

.hero__form-corner--bl {
  bottom: -5px;
  left: -5px;
  border-top: none;
  border-right: none;
}

.hero__form-corner--br {
  bottom: -5px;
  right: -5px;
  border-top: none;
  border-left: none;
}

.hero__form-title {  font-size: 26px;  font-weight: 700;  color: var(--color-primary);  margin-bottom: 15px;  text-transform: none;  line-height: 1.2;}.hero__form-desc {  color: var(--color-secondary);  font-size: 14px;  margin-bottom: 20px;  line-height: 1.4;  font-weight: 400;  max-width: 85%;}

.hero__form {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 20px + 0.5vw, 32px);
  margin-top: clamp(24px, 24px + 0.3vw, 36px);
}

.hero__form input,
.hero__form textarea {
  background: #eaeaea;
  border: none;
  border-radius: 0;
  padding: clamp(10px, 10px + 0.2vw, 16px) clamp(14px, 14px + 0.3vw, 20px);
  font-size: clamp(0.85rem, 0.85rem + 0.1vw, 1.1rem);
  margin-bottom: 0;
  transition: all 0.3s ease; /* Smooth transitions for interactive elements */
}

.hero__form textarea {
  min-height: 80px;
  resize: vertical;
}

.hero__form input:focus,
.hero__form textarea:focus {
  outline: 2px solid var(--color-primary);
  background: #fff;
}

.hero__form-button {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.8rem, 0.8rem + 0.1vw, 1rem); /* Improved scaling */
  border-radius: 0;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.5vw, 10px); /* Responsive gap */
  padding: clamp(10px, 1vw, 14px) clamp(24px, 2vw, 32px); /* Responsive padding */
  width: auto; /* Changed from 100% to auto */
  align-self: flex-start; /* Align button to the left */
  transition: all 0.3s ease; /* Smooth hover transitions */
}

/* Enhanced hover states for large screens */
@media (min-width: 1920px) {
  .hero__form-button:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
  }
  
  .hero__form input:hover,
  .hero__form textarea:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

.hero__form-arrow {
  font-size: 1.2em;
  margin-left: 4px;
  transition: transform 0.2s ease-in-out;
  vertical-align: middle;
  display: inline-block;
}

.hero__form-button:hover .hero__form-arrow {
  transform: translateX(5px);
}

/* Form container and views */
.hero__form-container {
  position: relative;
  width: 100%;
  min-height: 350px; /* Set a minimum height to maintain consistent size */
}

.hero__form-view {
  opacity: 1;
  transition: opacity 0.4s ease;
  width: 100%;
}

.hero__success-view {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px 0;
}

/* When form is submitted */
.hero__form-container--success .hero__form-view {
  opacity: 0;
  visibility: hidden;
}

.hero__form-container--success .hero__success-view {
  opacity: 1;
  visibility: visible;
}

/* Success message styles */
.hero__success-title {
  font-size: calc(1.3rem + 0.2vw);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.hero__success-desc {
  color: var(--color-secondary);
  font-size: calc(0.85rem + 0.1vw);
  line-height: 1.4;
}


/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: "Jost", Arial, Helvetica, sans-serif; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: "Jost", Arial, Helvetica, sans-serif; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: "Jost", Arial, Helvetica, sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* CSS edited directly */

.features {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.features .container {
  max-width: var(--container-max-width);
  width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.features__top {
  display: flex;
  margin-bottom: 40px;
  gap: 40px;
}

.features__header {
  flex: 0 0 40%;
}

.features__title {
  color: var(--color-primary);
  text-transform: lowercase;
  position: relative;
  margin-top: 40px;
  margin-bottom: 30px;
  display: inline-block;
  line-height: 1.2;
}

/* Desktop/Mobile Title Visibility Control */
.features__title--desktop {
  display: none !important; /* Hidden by default (mobile/tablet) */
}

.features__title--mobile {
  display: inline-block !important; /* Visible by default (mobile/tablet) */
}

/* Tablet and Mobile: Ensure desktop version is hidden */
@media (max-width: 1023px) {
  .features__title--desktop {
    display: none !important;
  }
  
  .features__title--mobile {
    display: inline-block !important;
  }
}

/* Desktop-only: Show desktop title, hide mobile title */
@media (min-width: 1024px) {
  .features__title--desktop {
    display: inline-block !important; /* Show desktop version */
  }
  
  .features__title--mobile {
    display: none !important; /* Hide mobile version */
  }
}

.features__corner-svg {
  position: absolute;
  top: calc(-0.5rem - 0.2vw);
  right: calc(-1rem - 0.3vw);
  width: calc(20px + 0.3vw);
  height: auto;
}

.features__video {
  flex: 0 0 60%;
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}

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

.features__video-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(229, 57, 53, 0.95) 0%, rgba(229, 57, 53, 0) 60%);
  z-index: 1;
  transition: transform 0.3s ease;
  transform-origin: bottom;
  transform: scaleY(1);
}

.features__video:hover .features__video-overlay {
  transform: scaleY(1.2);
}

.features__video-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  z-index: 2;
  margin: 0;
  text-transform: lowercase;
  transition: transform 0.3s ease;
}

.features__video-button {
  position: absolute;
  bottom: -60px;
  left: 30px;
  color: #fff;
  background: #282828;
  padding: 8px 20px;
  border-radius: 0; /* Removed border-radius */
  font-size: 16px;
  font-weight: 500;
  z-index: 4;
  text-decoration: none;
  transition: bottom 0.3s ease;
  border: none;
}


.features__video:hover .features__video-title {
  transform: translateY(-60px);
}

.features__video:hover .features__video-button {
  bottom: 30px;
}


.features__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.features__bottom {
  display: flex;
  gap: 30px;
  width: 100%;
}

.features__card {
  flex: 1;
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

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

.features__card-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(229, 57, 53, 0.95) 0%, rgba(229, 57, 53, 0) 60%);
  z-index: 1;
  transition: transform 0.3s ease;
  transform-origin: bottom;
  transform: scaleY(1);
}

.features__card:hover .features__card-overlay {
  transform: scaleY(1.5);
}

.features__card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
  margin: 0;
  text-transform: lowercase;
  transition: transform 0.3s ease;
  max-width: 120px;
  line-height: 1.2;
}

.features__card-button {
  position: absolute;
  bottom: -60px;
  left: 20px;
  color: #fff;
  background: #282828;
  padding: 8px 15px;
  border-radius: 0; /* Removed border-radius */
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
  transition: bottom 0.3s ease;
  border: none;
  cursor: pointer;
}

.features__button-arrow{
  margin-left: 8px;
  display: inline-block;
  width: 12px;
  height: auto;
}


.features__card:hover .features__card-title {
  transform: translateY(-40px);
}

.features__card:hover .features__card-button {
  bottom: 20px;
}


/* ================= ABOUT HERO SECTION ================= */
.about-hero {
  padding: 80px 0;
  overflow: hidden;
}

.about-hero__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: var(--container-max-width);
  width: var(--container-width);
}

.about-hero__content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.about-hero__subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #232323;
  margin-bottom: 20px;
}

.about-hero__title-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.about-hero__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #e63946;
  margin: 0;
}

.about-hero__arrow {
  position: absolute;
  margin: 30px 0;
  left: 0;
  max-width: 150px;
}

.about-hero__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #232323;
  margin-top: 90px;
  max-width: 600px;
}

.about-hero__image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 300px;
}
 /* make the video position top  */
.about-hero__image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


/* ================= SERVICES SECTION ================= */
.services {
  padding: 60px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.services__container {
  width: var(--container-width);
  max-width: var(--container-max-width);
}

.services__header {
  margin-bottom: 40px;
}

.services__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #e63946;
  position: relative;
  display: inline-block;
  max-width: 80%;
}

.services__corner-svg {
  position: absolute;
  top: 0;
  right: -20px;
  width: 15px;
  height: 15px;
}

.services__carousel {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.services__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 40px;
  width: 100%;
}

.services__track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 auto;
  width: 300px; /* Fixed width instead of percentage */
  min-width: 260px;
  background-color: #232323;
  padding: 30px 25px;
  border-radius: 0;
  text-align: left;
  scroll-snap-align: start;
  position: relative;
  height: 200px; /* Set fixed height for the card */
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.service-card__icon-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #e63946;
  position: absolute;
  bottom: 25px;
  left: 25px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
}

.service-card__text {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
  margin: 0;
}

/* Hover effect */
.service-card:hover {
  background-color: #E5383B;
}

.service-card:hover .service-card__title {
  opacity: 0;
  transform: translateY(-10px);
}

.service-card:hover .service-card__text {
  opacity: 1;
  transform: translateY(0);
}

.services__navigation {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.services__nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.services__nav-dot--active {
  background-color: #e63946;
}

.services__nav-dot:hover {
  background-color: #ccc;
}

/* Media Queries */
@media (max-width: 992px) {
  .services__title {
    font-size: 2.2rem;
    max-width: 90%;
  }
  
  .service-card {
    width: 280px; /* Slightly smaller fixed width for medium screens */
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 50px 0;
  }
  
  .services__title {
    font-size: 1.8rem;
    max-width: 100%;
  }
  
  .services__header {
    margin-bottom: 30px;
  }
  
  .service-card {
    width: 260px; /* Smaller fixed width for mobile screens */
    min-width: 240px;
    padding: 25px 20px;
    height: 180px;
  }
  
  .service-card__title {
    font-size: 1.3rem;
    bottom: 20px;
    left: 20px;
  }
  
  .service-card__text {
    font-size: 0.7rem;
    line-height: 1.3;
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .services {
    padding: 40px 0;
  }
  
  .services__title {
    font-size: 1.5rem;
  }
  
  .services__header {
    margin-bottom: 25px;
  }
  
  .service-card {
    padding: 20px 15px;
    height: 160px;
  }
  
  .service-card__title {
    font-size: 1.1rem;
    bottom: 15px;
    left: 15px;
  }
  
  .service-card__text {
    font-size: 0.65rem;
    line-height: 1.2;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
}

/* For larger screens */
@media (min-width: 1440px) {
  .service-card {
    padding: 35px 30px;
    height: 220px;
  }
  
  .service-card__title {
    font-size: 1.7rem;
    bottom: 30px;
    left: 30px;
  }
}

/* Expertise Section */
.expertise {
  background-color: #282828;
  padding: calc(3rem + 2vw) 0;
  color: #fff;
}

.expertise__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(2rem + 2vw);
}

.expertise__content {
  flex: 1;
}

.expertise__title {
  font-size: calc(1.8rem + 0.7vw);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.expertise__image {
  flex: 0 0 auto;
  max-width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expertise__svg {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Media queries for expertise section */
@media (max-width: 992px) {
  .expertise__container {
    flex-direction: column;
    gap: 2rem;
  }

  .expertise__image {
    max-width: 70%;
    order: -1;
  }

  .expertise__title {
    font-size: calc(1.5rem + 0.5vw);
    text-align: center;
  }
}

@media (max-width: 576px) {
  .expertise {
    padding: calc(2rem + 1vw) 0;
  }

  .expertise__image {
    max-width: 90%;
  }

  .expertise__title {
    font-size: calc(1.3rem + 0.3vw);
  }
}

@media (min-width: 1600px) {
  .expertise__title {
    font-size: calc(2rem + 0.5vw);
  }

  .expertise__image {
    max-width: 25%;
  }
}

@media (min-width: 2560px) {
  .expertise {
    padding: calc(5rem + 2vw) 0;
  }

  .expertise__title {
    font-size: calc(2.5rem + 1vw);
  }
}

/* Enhanced Desktop Optimization for Smaller Desktop Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {

}

/* Media query for large screens */
@media (min-width: 1400px) {
  .service-card {
    width: 350px;
    height: 240px;
  }
  
  .service-card__title {
    font-size: 1.9rem;
    bottom: 30px;
    left: 30px;
  }
  
  .service-card__text {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .features__grid {
    gap: 25px;
  }
  
  /* Cut and Bend Facilities card - taller card */
  .features__grid a:nth-child(3) {
    height: 625px; /* Adjusted for larger screens */
  }
}


/* Hero Form Top-Right Inner Corner Arrow Decoration */
.hero__form-inner-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 46px;
  z-index: 3;
  /* Place above the border, but below form content */
  pointer-events: none;
  /* Responsive scaling for smaller screens */
}

/* Hero Form Top-Right OUTER Corner Arrow Decoration */
.hero__form-corner-arrow {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%,-50%);
  width: 46px;
  height: 46px;
  z-index: 10;
  pointer-events: none;
}

/* Enhanced Desktop Responsive Breakpoints (1400px - 1919px) */
@media (min-width: 1400px) and (max-width: 1919px) {
  :root {
    --container-max-width: clamp(1300px, 85vw, 1600px);
  }

  .hero {
    padding: clamp(70px, 4.2vw, 85px) 0 clamp(90px, 5.5vw, 110px);
  }

  .hero__title {
    font-size: clamp(2.8rem, 2.8rem + 0.6vw, 3.4rem);
  }


  .hero__left {
    flex: 1.1;
  }

  .hero__right {
    flex: 0.85;
  }

  .hero__form-card {
    max-width: clamp(480px, 52vw, 580px);
    padding: clamp(2rem, 2rem + 0.3vw, 2.5rem) clamp(1rem, 1rem + 0.2vw, 1.4rem);
  }

  .hero__form-title {
    font-size: clamp(24px, 1.6vw, 28px);
    margin-bottom: clamp(12px, 0.9vw, 16px);
    line-height: 1.2;
  }

  .hero__form-desc {
    font-size: clamp(13px, 0.9vw, 15px);
    margin-bottom: clamp(18px, 1.3vw, 22px);
    line-height: 1.4;
  }

  .hero__form {
    gap: clamp(14px, 1vw, 18px);
  }

  .hero__form input,
  .hero__form textarea {
    padding: clamp(10px, 0.7vw, 14px) clamp(12px, 0.9vw, 16px);
    font-size: clamp(13px, 0.9vw, 15px);
  }

  .hero__form-button {
    padding: clamp(12px, 0.9vw, 16px) clamp(22px, 1.6vw, 28px);
    font-size: clamp(15px, 1.1vw, 18px);
  }

  .carousel__slide {
    min-width: clamp(240px, 16vw, 280px);
    max-width: clamp(320px, 22vw, 360px);
  }

  .product-card__img {
    height: clamp(180px, 13vw, 220px);
  }

  .product-card__title {
    font-size: clamp(20px, 1.4vw, 24px);
  }

  /* Enhanced Insights Section for 1400px-1919px */
  .insights {
    padding: clamp(70px, 4.5vw, 90px) 0;
  }

  .insights .section__title {
    font-size: clamp(2.2rem, 2.2rem + 0.5vw, 2.7rem);
    margin-bottom: clamp(40px, 2.8vw, 55px);
    line-height: 1.15;
  }

  .insights__corner-svg {
    width: clamp(25px, 1.6vw, 32px);
    height: clamp(25px, 1.6vw, 32px);
    margin-left: clamp(5px, 0.4vw, 7px);
    vertical-align: top;
  }

  .insights__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 2vw, 38px);
    width: 100%;
  }

  .insight-card {
    display: flex;
    overflow: hidden;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .insight-card:hover {
    transform: translateY(clamp(-8px, -0.6vw, -12px));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  }

  .insight-card__image {
    width: 40%;
    min-width: clamp(180px, 12vw, 220px);
    overflow: hidden;
  }

  .insight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .insight-card:hover .insight-card__image img {
    transform: scale(1.05);
  }

  .insight-card__content {
    flex: 1;
    padding: clamp(22px, 1.6vw, 28px);
    background-color: #232323;
    color: #fff;
    display: flex;
    flex-direction: column;
  }

  .insight-card__title {
    color: #fff;
    font-size: clamp(1.15rem, 1.15rem + 0.15vw, 1.35rem);
    margin-bottom: clamp(12px, 0.9vw, 16px);
    line-height: 1.3;
    font-weight: 600;
  }

  .insight-card__desc {
    color: #e0e0e0;
    font-size: clamp(0.92rem, 0.92rem + 0.08vw, 1.05rem);
    line-height: 1.5;
    margin-bottom: clamp(18px, 1.3vw, 24px);
    flex-grow: 1;
  }

  .insight-card__button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: #fff;
    font-size: clamp(0.85rem, 0.85rem + 0.08vw, 0.98rem);
    font-weight: 500;
    padding: clamp(9px, 0.7vw, 12px) clamp(16px, 1.2vw, 20px);
    border-radius: 0;
    text-decoration: none;
    align-self: flex-start;
    border: none;
    transition: all 0.3s ease;
  }

  .insight-card__button:hover {
    background-color: #d42836;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
  }

  .insight-card__button-arrow {
    margin-left: clamp(8px, 0.6vw, 11px);
    width: clamp(12px, 0.9vw, 15px);
    height: clamp(12px, 0.9vw, 15px);
    transition: transform 0.3s ease;
  }

  .insight-card__button:hover .insight-card__button-arrow {
    transform: translateX(4px);
  }

  /* Enhanced Features Section for 1400px-1919px */
  .features {
    padding: clamp(70px, 4.5vw, 90px) 0;
  }

  .features .container {
    max-width: var(--container-max-width);
    width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 1.5vw, 2rem);
  }

  .features__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: clamp(40px, 2.8vw, 55px);
    gap: clamp(3rem, 4vw, 5rem);
  }

  .features__header {
    flex: 1;
  }

  .features__title {
    font-size: clamp(2.2rem, 2.2rem + 0.5vw, 2.7rem);
    margin-bottom: 0;
    line-height: 1.15;
    color: var(--color-primary);
    text-transform: lowercase;
  }

  .features__corner-svg {
    width: clamp(25px, 1.6vw, 32px);
    height: clamp(25px, 1.6vw, 32px);
    margin-left: clamp(5px, 0.4vw, 7px);
    vertical-align: top;
  }

  .features__video {
    width: clamp(420px, 45vw, 520px);
    height: clamp(280px, 30vw, 350px);
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .features__video-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(229, 57, 53, 0.95) 0%, rgba(229, 57, 53, 0) 60%);
    z-index: 1;
    transition: transform 0.3s ease;
    transform-origin: bottom;
    transform: scaleY(1);
  }

  .features__video:hover .features__video-overlay {
    transform: scaleY(1.2);
  }

  .features__video-title {
    position: absolute;
    color: #fff;
    font-weight: 600;
    z-index: 2;
    margin: 0;
    text-transform: lowercase;
    transition: transform 0.3s ease;
    font-size: clamp(1.3rem, 1.3rem + 0.2vw, 1.55rem);
    bottom: clamp(27px, 2.2vw, 32px);
    left: clamp(25px, 1.8vw, 35px);
    right: clamp(25px, 1.8vw, 35px);
    line-height: 1.2;
  }

  .features__video-button {
    position: absolute;
    color: #fff;
    background: #282828;
    border-radius: 0;
    font-weight: 500;
    z-index: 4;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: bottom 0.3s ease;
    font-size: clamp(0.9rem, 0.9rem + 0.1vw, 1.05rem);
    padding: clamp(10px, 0.7vw, 13px) clamp(20px, 1.4vw, 26px);
    bottom: -60px;
    left: clamp(25px, 1.8vw, 35px);
    gap: clamp(8px, 0.6vw, 11px);
  }

  .features__video:hover .features__video-title {
    transform: translateY(clamp(-70px, -2.2vw, -90px));
  }

  .features__video:hover .features__video-button {
    bottom: clamp(30px, 2vw, 40px);
  }

  .features__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
  }

  .features__bottom {
    display: flex;
    gap: clamp(25px, 1.8vw, 35px);
  }

  .features__card {
    flex: 1;
    height: clamp(280px, 30vw, 350px);
    position: relative;
    border-radius: 0;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

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

  .features__card-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(229, 57, 53, 0.95) 0%, rgba(229, 57, 53, 0) 60%);
    z-index: 1;
    transition: transform 0.3s ease;
    transform-origin: bottom;
    transform: scaleY(1);
  }

  .features__card:hover .features__card-overlay {
    transform: scaleY(1.5);
  }

  .features__card-title {
    position: absolute;
    color: #fff;
    font-weight: 600;
    z-index: 2;
    margin: 0;
    text-transform: lowercase;
    transition: transform 0.3s ease;
    max-width: 120px;
    font-size: clamp(1.3rem, 1.3rem + 0.2vw, 1.55rem);
    bottom: clamp(27px, 2.2vw, 32px);
    left: clamp(25px, 1.8vw, 35px);
    right: clamp(25px, 1.8vw, 35px);
    line-height: 1.2;
  }

  .features__card-button {
    position: absolute;
    color: #fff;
    background: #282828;
    border-radius: 0;
    font-weight: 500;
    z-index: 2;
    border: none;
    cursor: pointer;
    transition: bottom 0.3s ease;
    font-size: clamp(0.9rem, 0.9rem + 0.1vw, 1.05rem);
    padding: clamp(10px, 0.7vw, 13px) clamp(20px, 1.4vw, 26px);
    bottom: -60px;
    left: clamp(25px, 1.8vw, 35px);
    gap: clamp(8px, 0.6vw, 11px);
  }

  .features__button-arrow {
    margin-left: clamp(8px, 0.6vw, 11px);
    display: inline-block;
    width: clamp(12px, 0.9vw, 15px);
    height: auto;
  }

  .features__card:hover .features__card-title {
    transform: translateY(clamp(-60px, -2.2vw, -80px));
  }

  .features__card:hover .features__card-button {
    bottom: clamp(30px, 2vw, 40px);
  }

  /* Enhanced Estimator CTA Section for 1400px-1919px */
  .estimator-cta {
    padding: clamp(70px, 4.5vw, 90px) 0;
  }

  .estimator-cta__container {
    padding: 0 clamp(1rem, 1.5vw, 2rem);
  }

  .estimator-cta__content {
    width: clamp(65%, 70vw, 75%);
  }

  .estimator-cta__title {
    font-size: clamp(2rem, 2rem + 0.5vw, 2.5rem);
    margin-bottom: clamp(40px, 2.8vw, 55px);
    line-height: 1.15;
  }

  .estimator-cta__corner-svg {
    width: clamp(24px, 1.6vw, 30px);
    height: clamp(24px, 1.6vw, 30px);
    margin-left: clamp(5px, 0.4vw, 7px);
  }

  .estimator-cta__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(12px, 0.9vw, 16px) clamp(24px, 1.8vw, 32px) !important;
    font-size: clamp(16px, 1.2vw, 20px) !important;
    min-width: clamp(180px, 18vw, 240px) !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
    background: var(--color-primary) !important;
    margin-top: clamp(5px, 0.4vw, 8px) !important;
    text-decoration: none !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
  }

  .estimator-cta__button:hover {
    background: #fff !important;
    color: var(--color-primary) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.3) !important;
  }

  .estimator-cta__button:hover .estimator-cta__button-arrow img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(82%) saturate(3718%) hue-rotate(343deg) brightness(87%) contrast(92%) !important;
  }

  .estimator-cta__button-arrow {
    margin-left: clamp(8px, 0.6vw, 12px) !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .estimator-cta__button-arrow img {
    width: clamp(14px, 1vw, 18px) !important;
    aspect-ratio: 1/1 !important;
    object-fit: contain !important;
  }

  /* Enhanced Products in Demand Section for 1400px-1919px */
  .products-demand {
    padding: clamp(70px, 4.5vw, 90px) 0 !important;
  }

  .products-demand .container {
    max-width: var(--container-max-width) !important;
    width: var(--container-width) !important;
    margin: 0 0 0 clamp(1.5rem, 8vw, 8rem) !important;
    padding: 0 !important;
  }

  .products-demand__title {
    font-size: clamp(2.2rem, 2.2rem + 0.5vw, 2.7rem) !important;
    margin-bottom: clamp(40px, 2.8vw, 55px) !important;
    line-height: 1.15 !important;
    color: var(--color-primary) !important;
    text-transform: lowercase !important;
  }

  .products-demand__corner-svg {
    width: clamp(25px, 1.6vw, 32px) !important;
    height: clamp(25px, 1.6vw, 32px) !important;
    margin-left: clamp(5px, 0.4vw, 7px) !important;
  }

  .carousel__track {
    gap: clamp(25px, 1.8vw, 35px) !important;
    padding-bottom: clamp(25px, 1.8vw, 35px) !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .carousel__slide {
    width: clamp(240px, 20vw, 320px) !important;
    min-width: clamp(220px, 18vw, 280px) !important;
    max-width: clamp(320px, 24vw, 380px) !important;
  }

  .product-card {
    padding: clamp(25px, 1.8vw, 32px) clamp(20px, 1.5vw, 26px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .product-card:hover {
    transform: translateY(clamp(-8px, -0.6vw, -12px)) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  }

  .product-card__img {
    height: clamp(160px, 14vw, 220px) !important;
    margin-bottom: clamp(16px, 1.2vw, 22px) !important;
    transition: transform 0.3s ease !important;
  }

  .product-card__title {
    font-size: clamp(18px, 1.3vw, 24px) !important;
    margin-bottom: clamp(16px, 1.2vw, 22px) !important;
    line-height: 1.3 !important;
  }

  .product-card__button {
    padding: clamp(10px, 0.7vw, 14px) clamp(20px, 1.5vw, 26px) !important;
    font-size: clamp(14px, 1vw, 18px) !important;
    gap: clamp(5px, 0.4vw, 8px) !important;
    margin-top: clamp(12px, 0.9vw, 16px) !important;
    transition: all 0.3s ease !important;
  }

  .product-card__button-arrow {
    width: clamp(12px, 0.9vw, 16px) !important;
  }

  .carousel__progress-container {
    width: clamp(200px, 18vw, 280px) !important;
    height: clamp(8px, 0.6vw, 12px) !important;
  }

  .carousel__progress-bar {
    height: clamp(12px, 0.9vw, 16px) !important;
    width: clamp(50px, 4.5vw, 70px) !important;
    top: clamp(-2px, -0.15vw, -3px) !important;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3) !important;
  }
}

/* Enhanced Ultra-Wide Screen Support for Homepage (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
  .hero {
    padding: clamp(80px, 5vw, 100px) 0 clamp(100px, 6vw, 120px);
  }
  
  .hero__title {
    font-size: clamp(3.2rem, 3.2rem + 0.8vw, 4.2rem);
  }
  
  .hero__form-card {
    max-width: clamp(550px, 55vw, 650px);
    padding: clamp(2.2rem, 2.2rem + 0.4vw, 3rem) clamp(1.2rem, 1.2rem + 0.3vw, 1.8rem);
  }
  
  .carousel__slide {
    min-width: clamp(260px, 18vw, 320px);
    max-width: clamp(350px, 24vw, 420px);
  }

  /* Enhanced Insights Section for 1920px-2559px */
  .insights {
    padding: clamp(80px, 5vw, 100px) 0;
  }

  .insights .section__title {
    font-size: clamp(2.4rem, 2.4rem + 0.6vw, 3rem);
    margin-bottom: clamp(50px, 3vw, 70px);
    line-height: 1.15;
    color: var(--color-primary);
    text-transform: lowercase;
  }

  .insights__corner-svg {
    width: clamp(28px, 1.8vw, 38px);
    height: clamp(28px, 1.8vw, 38px);
    margin-left: clamp(6px, 0.5vw, 9px);
    vertical-align: top;
  }

  .insights__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(35px, 2.5vw, 50px);
    width: 100%;
  }

  .insight-card {
    display: flex;
    overflow: hidden;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: clamp(280px, 20vw, 350px);
  }

  .insight-card:hover {
    transform: translateY(clamp(-10px, -0.8vw, -16px));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  }

  .insight-card__image {
    width: 40%;
    min-width: clamp(220px, 15vw, 280px);
    overflow: hidden;
  }

  .insight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .insight-card:hover .insight-card__image img {
    transform: scale(1.08);
  }

  .insight-card__content {
    flex: 1;
    padding: clamp(28px, 2vw, 38px);
    background-color: #232323;
    color: #fff;
    display: flex;
    flex-direction: column;
  }

  .insight-card__title {
    color: #fff;
    font-size: clamp(1.3rem, 1.3rem + 0.2vw, 1.6rem);
    margin-bottom: clamp(15px, 1.1vw, 22px);
    line-height: 1.3;
    font-weight: 600;
  }

  .insight-card__desc {
    color: #e0e0e0;
    font-size: clamp(1rem, 1rem + 0.1vw, 1.2rem);
    line-height: 1.5;
    margin-bottom: clamp(22px, 1.6vw, 30px);
    flex-grow: 1;
  }

  .insight-card__button {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: #fff;
    font-size: clamp(0.95rem, 0.95rem + 0.1vw, 1.15rem);
    font-weight: 500;
    padding: clamp(11px, 0.8vw, 15px) clamp(20px, 1.5vw, 26px);
    border-radius: 0;
    text-decoration: none;
    align-self: flex-start;
    border: none;
    transition: all 0.3s ease;
  }

  .insight-card__button:hover {
    background-color: #d42836;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(229, 57, 53, 0.4);
  }

  .insight-card__button-arrow {
    margin-left: clamp(10px, 0.7vw, 14px);
    width: clamp(14px, 1vw, 18px);
    height: clamp(14px, 1vw, 18px);
    transition: transform 0.3s ease;
  }

  .insight-card__button:hover .insight-card__button-arrow {
    transform: translateX(4px);
  }

  /* Enhanced Products in Demand Section for 1920px-2559px */
  .products-demand {
    padding: clamp(80px, 5vw, 100px) 0 !important;
  }
  
  .products-demand .container {
    max-width: var(--container-max-width) !important;
    width: var(--container-width) !important;
    margin: 0 0 0 clamp(2.5rem, 10vw, 10rem) !important;
    padding: 0 !important;
  }
  
  .products-demand__title {
    font-size: clamp(2.2rem, 2.2rem + 0.6vw, 2.8rem) !important;
    margin-bottom: clamp(50px, 3vw, 70px) !important;
    line-height: 1.15 !important;
    color: var(--color-primary) !important;
    text-transform: lowercase !important;
  }
  
  .products-demand__corner-svg {
    width: clamp(25px, 1.5vw, 35px) !important;
    height: clamp(25px, 1.5vw, 35px) !important;
    margin-left: clamp(5px, 0.5vw, 8px) !important;
  }
  
  .carousel__track {
    gap: clamp(30px, 2.5vw, 45px) !important;
    padding-bottom: clamp(30px, 2.5vw, 40px) !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .carousel__slide {
    width: clamp(280px, 24vw, 380px) !important;
    min-width: clamp(260px, 20vw, 340px) !important;
    max-width: clamp(380px, 28vw, 450px) !important;
  }
  
  .product-card {
    padding: clamp(30px, 2.5vw, 40px) clamp(25px, 2vw, 32px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }
  
  .product-card:hover {
    transform: translateY(clamp(-10px, -0.8vw, -14px)) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18) !important;
  }
  
  .product-card__img {
    height: clamp(200px, 18vw, 280px) !important;
    margin-bottom: clamp(20px, 1.8vw, 28px) !important;
    transition: transform 0.3s ease !important;
  }
  
  .product-card:hover .product-card__img {
    transform: scale(1.03) !important;
  }
  
  .product-card__title {
    font-size: clamp(22px, 1.6vw, 28px) !important;
    margin-bottom: clamp(20px, 1.8vw, 28px) !important;
    line-height: 1.3 !important;
  }
  
  .product-card__button {
    padding: clamp(12px, 1vw, 16px) clamp(24px, 2vw, 32px) !important;
    font-size: clamp(16px, 1.2vw, 22px) !important;
    gap: clamp(6px, 0.6vw, 10px) !important;
    margin-top: clamp(15px, 1.2vw, 20px) !important;
    transition: all 0.3s ease !important;
  }
  
  .product-card__button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(229, 57, 53, 0.4) !important;
  }
  
  .product-card__button-arrow {
    width: clamp(14px, 1.1vw, 20px) !important;
  }
  
  .carousel__progress-container {
    width: clamp(250px, 22vw, 350px) !important;
    height: clamp(10px, 0.8vw, 14px) !important;
  }
  
  .carousel__progress-bar {
    height: clamp(14px, 1.1vw, 18px) !important;
    width: clamp(60px, 5.5vw, 85px) !important;
    top: clamp(-2px, -0.15vw, -3px) !important;
    box-shadow: 0 3px 10px rgba(229, 57, 53, 0.4) !important;
  }
}

/* disabling hovering effect for particular cards  */

.temp-remove {
  pointer-events: none;   /* disables click, hover, redirect */
  cursor: default;        /* removes hand cursor */
}
.temp-remove button {
  display: none !important;
}

/* Override hover effects for temp-remove cards */
.temp-remove:hover .features__card-overlay {
  transform: scaleY(0) !important; /* Keep original state, no scaling */
}

.temp-remove:hover .features__card-title {
  transform: translateY(0) !important; /* Keep original position, no movement */
}

.temp-remove:hover .features__card-button {
  bottom: 0 !important; /* Keep original position, no movement */
}
