* {
  box-sizing: border-box;
}

body {
  background-color: #101010;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Anton/Anton-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Roboto/roboto-regular.woff2") format("woff2");
  font-display: swap;
}

.cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #d00c16;
  color: #f8f2de;
  font-size: 0.72rem;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.cart-count-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-overlay.is-visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1300;
  width: min(440px, 100%);
  height: 100dvh;
  background: #111;
  color: #f8f2de;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(248, 242, 222, 0.12);
}

.cart-drawer__header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 400;
}

.cart-drawer__close {
  border: 0;
  background: transparent;
  color: #f8f2de;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer__close img {
  width: 20px;
  height: 20px;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem;
}

.cart-drawer__footer {
  padding: 1.2rem;
  border-top: 1px solid rgba(248, 242, 222, 0.12);
}

.cart-drawer__subtotal-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 200;
}

.cart-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
}

.cart-drawer__actions button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.2rem;
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.cart-drawer__actions button:active {
  transform: scale(0.995);
}

.cart-drawer__actions [data-cart-clear] {
  background: transparent;
  border: 1px solid rgba(248, 242, 222, 0.16);
  color: rgba(248, 242, 222, 0.88);
}

.cart-drawer__actions [data-cart-clear]:hover {
  background: rgba(248, 242, 222, 0.05);
  border-color: rgba(248, 242, 222, 0.3);
  color: #f8f2de;
}

.cart-drawer__actions [data-cart-checkout] {
  background: #d00c16;
  border: 1px solid #d00c16;
  color: #f8f2de;
}

.cart-drawer__actions [data-cart-checkout]:hover {
  background: #b40a12;
  border-color: #b40a12;
}

.cart-empty {
  padding: 2rem 0;
}

.cart-empty p {
  margin: 0;
  color: rgba(248, 242, 222, 0.75);
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(248, 242, 222, 0.1);
}

.cart-item__image img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.cart-item__title {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 400;
  color: #f8f2de;
}

.cart-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  font-weight: 200;
  color: rgba(248, 242, 222, 0.85);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cart-item__controls button,
.cart-item__controls input {
  height: 38px;
}

.cart-item__controls button {
  border: 1px solid rgba(248, 242, 222, 0.18);
  background: transparent;
  color: #f8f2de;
  padding: 0 0.8rem;
  border-radius: 8px;
  cursor: pointer;
}

.cart-item__controls input {
  width: 62px;
  text-align: center;
  border: 1px solid rgba(248, 242, 222, 0.18);
  background: transparent;
  color: #f8f2de;
  border-radius: 8px;
}

.cart-item__remove {
  margin-left: auto;
}

html.cart-open,
body.cart-open {
  overflow: hidden;
}

.promo-bar {
  z-index: 1200;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease;
}

body.promo-hidden .promo-bar {
  transform: translate3d(0, -100%, 0);
  pointer-events: none;
}

.promo-inner {
  width: 100%;
  padding: 0 3.8rem;
  box-sizing: border-box;
  overflow: hidden;
}

.promo-track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: promo-scroll var(--dur, 28s) linear infinite;
}

.promo-seq {
  display: flex;
  align-items: center;
  gap: 3.8rem;
  padding-right: 3.8rem;
}

.promo-unit {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
}

.promo-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f8f2de;
  font-size: 0.95rem;
  font-weight: 200;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.95;
}

.promo-item img {
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.9;
}

.promo-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(248, 242, 222, 0.55);
  display: inline-block;
  flex: 0 0 auto;
  font-size: 0;
  line-height: 0;
}

.promo-bar:hover .promo-track,
.promo-bar:focus-within .promo-track {
  animation-play-state: paused;
}

@keyframes promo-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * var(--shift, 0px)), 0, 0);
  }
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  margin-top: 30px;
  padding: 1.4rem 3.8rem;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 1.4rem 3.8rem;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
  margin-top: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
  min-width: 120px;
}

.nav-center {
  justify-content: center;
  flex: 1;
  margin-top: 1.5rem;
  gap: 1.4rem;
}

.nav-right {
  justify-content: flex-end;
  min-width: 120px;
  margin-top: 1.5rem;
  gap: 1rem;
}

.logo img {
  width: 75px;
  height: auto;
  display: block;
  transition: all 0.3s ease-in-out;
}

header.scrolled .logo img {
  width: 65px;
}

.nav-center a {
  color: #f8f2de;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 200;
}

.current-page {
  color: #d00c16 !important;
}

.nav-center a.current-page {
  position: relative;
  z-index: 1;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #f8f2de;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 200;
}

.cart img {
  width: 20px;
  height: 20px;
  display: block;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  padding: 0.95rem 1.1rem;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.mobile-nav-left,
.mobile-nav-right {
  display: flex;
  align-items: center;
}

.mobile-nav-right {
  gap: 0.9rem;
}

.nav-logo-mobile {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-mobile {
  width: 62px;
  height: auto;
  display: block;
}

.mobile-cart {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.mobile-cart img {
  width: 20px;
  height: 20px;
  display: block;
}

.mobile-cart .cart-count-badge {
  top: 2px;
  right: 0;
}

.nav-menu {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.line-menu,
.line-small {
  display: block;
  background-color: #f8f2de;
  height: 1px;
  transition: all 0.25s ease;
}

.line-menu {
  width: 24px;
}

.line-small {
  width: 18px;
  margin-left: 6px;
}

.menu-mobile {
  display: none;
  background-color: #101010;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-closing {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
}

.menu-close {
  width: 20px;
  height: 20px;
  display: block;
}

.menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7.5rem 1rem 2rem 1rem;
}

.menu-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem 0;
  color: #f8f2de;
  font-weight: 200;
  font-size: 1.7rem;
  line-height: 2rem;
}

.menu-mobile-bottom {
  padding: 0 0 1.2rem;
}

.menu-divider {
  display: block;
  margin: 0 1.4rem;
  width: calc(100% - 2.8rem);
  height: 2px;
}

.language-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #f8f2de;
  font-weight: 200;
  font-size: 1.15rem;
  line-height: 1.4rem;
  padding: 1rem 1.4rem 0;
}

.language-switch a {
  text-decoration: none;
  color: #f8f2de;
  margin: 0;
}

main {
  height: 75vh;
  width: 100%;
  position: relative;
}

.hero-gradient {
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 12.98%,
    rgba(89, 87, 87, 0.25) 50.48%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-img {
  width: 100%;
  height: 75vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-navigation {
  position: absolute;
  z-index: 3;
  top: 8rem;
  left: 8rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.hero-navigation a,
.hero-navigation span {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 0.98rem;
  line-height: 1.4rem;
  color: #faf3e1;
  text-decoration: none;
}

.hero-navigation a:hover {
  opacity: 0.75;
}

.hero-text {
  position: absolute;
  z-index: 3;
  bottom: 4rem;
  left: 8rem;
  right: 8rem;
}

h1 {
  color: #f8f2de;
  font-family: "Anton", sans-serif;
  letter-spacing: 3px;
  font-size: 3rem;
  line-height: 3.3rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-text p {
  font-family: "Roboto", sans-serif;
  color: #faf3e1;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-bottom: 1.8rem;
}

.blog-info {
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #faf3e160;
}

.blog-info p {
  margin: 0;
  font-weight: 200;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gear-cta,
.control-cta,
.lab-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f8f2de;
  font-weight: 200;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 5px;
}

.gear-cta {
  background: linear-gradient(
    86deg,
    #3a3838 10.84%,
    #454545 39.53%,
    #817d7d 80.38%,
    #bfbfbf 95.96%,
    #bdbdbd 104.21%
  );
}

.control-cta {
  background: linear-gradient(
    86deg,
    #5c0000 10.84%,
    #7c0000 39.53%,
    #970101 68.77%,
    #a14e4e 94%,
    #d5d5d5 104.21%
  );
}

.service-content {
  padding: 6rem 8rem;
  background-color: #101010;
}

.service-intro-grid,
.service-content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.3fr);
  gap: 4rem;
  align-items: start;
}

.service-intro-grid {
  padding-bottom: 4rem;
}

.service-content-grid {
  padding: 4rem 0;
  border-top: 1px solid rgba(44, 42, 42, 0.16);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem 0;
  font-family: "PPEditorialOld", serif !important;
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: #aa2b1d;
}

.section-kicker span {
  width: 8px;
  height: 8px;
  background-color: #aa2b1d;
  display: inline-block;
  margin-top: -4px;
}

.service-content h2,
.service-content h3 {
  font-family: "Anton", sans-serif;
  font-weight: 500;
  color: #f8f2de;
}

.service-content h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  margin: 0;
}

.service-content h3 {
  font-size: 1.5rem;
  line-height: 1.9rem;
  margin: 0 0 0.8rem 0;
}

.service-content p {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.9rem;
  color: #f8f2de;
  margin: 0;
}

.service-content-grid > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 1rem 0 4rem 0;
}

.service-detail-card {
  background-color: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(44, 42, 42, 0.1);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(44, 42, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.main-cta-dark {
  background-color: #aa2b1d;
  color: #faf3e1;
  padding: 0.8rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-cta-dark:hover {
  transform: translateY(-2px);
  background-color: #f8f2de;
  color: #faf3e1;
}

.secondary-cta-dark {
  background-color: transparent;
  color: #f8f2de;
  padding: 0.8rem 1.4rem;
  border-radius: 25px;
  border: 1px solid #f8f2de;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.secondary-cta-dark:hover {
  transform: translateY(-2px);
}

.service-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.service-cta-box {
  margin-top: 4rem;
  padding: 2.5rem;
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(44, 42, 42, 0.1);
  box-shadow: 0 8px 24px rgba(44, 42, 42, 0.08);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.service-cta-box > div:first-child {
  max-width: 760px;
}

footer {
  background-color: #191919;
  padding: 2rem 8rem 0 8rem;
}

.footer-logo {
  width: 65px;
  height: auto;
}

.footer-slogan {
  color: #f8f2de;
  font-weight: 200;
  font-size: 1.1rem;
  width: 60%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0;
}

.footer-links div {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  color: #f8f2de;
  font-weight: 300;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: #f8f2de;
  font-weight: 200;
  line-height: 1.4rem;
  font-size: 1rem;
  display: inline-block;
}

.footer-logos {
  display: flex;
  gap: 1rem;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: #3a3838;
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #f8f2de;
  font-weight: 200;
  font-size: 0.9rem;
}

.footer-bottom a {
  text-decoration: none;
  color: #f8f2de;
  font-weight: 200;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-navigation {
    display: none;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    bottom: 10%;
  }
  h1 {
    width: 100%;
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
  .hero-img img {
    object-position: 75% 50%;
  }
  .hero-text p {
    width: 100%;
    max-width: 100%;
    display: none;
  }
  .hero-buttons {
    gap: 0.6rem;
  }
  .blog-info {
    width: 100%;
    justify-content: flex-start;
  }
  .blog-info p {
    margin: 0;
    width: auto;
    font-weight: 200;
    font-size: 1rem;
    display: flex !important;
  }
  main,
  .hero-img {
    height: 82vh;
  }

  .hero-navigation {
    top: 5.5rem;
    left: 1.5rem;
    right: 1.5rem;
    font-size: 0.92rem;
  }

  .hero-text {
    left: 1rem;
    right: 1rem;
    bottom: 2.5rem;
  }

  .hero-text p,
  .service-content p {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }

  .service-content {
    padding: 4rem 1rem;
  }

  .service-intro-grid,
  .service-content-grid {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
  }

  .service-card-grid {
    display: flex;
    flex-direction: column;
  }

  .service-content h2 {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }

  .service-content h3 {
    font-size: 1.25rem;
    line-height: 1.65rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-detail-card,
  .service-cta-box {
    padding: 1.5rem;
  }
  .service-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  footer {
    padding: 2rem 1rem 0rem 1rem;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-icons {
    margin-top: 0.5rem;
  }

  .footer-slogan {
    width: 70%;
  }

  .footer-links {
    flex-direction: column;
    margin: 1rem 0;
  }
  .footer-logos {
    margin-top: 3rem;
  }
  .footer-bottom {
    padding: 1rem;
    flex-direction: column;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 2rem;
    right: 2rem;
    width: calc(100% - 4rem);
    bottom: 10%;
  }
  h1 {
    width: 100%;
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
  .hero-img img {
    object-position: 85% 50%;
  }
  .hero-text p {
    width: 100%;
    max-width: 100%;
    display: none;
  }
  .hero-buttons {
    gap: 0.6rem;
  }
  .blog-info {
    width: 100%;
    justify-content: flex-start;
  }
  .blog-info p {
    margin: 0;
    width: auto;
    font-weight: 200;
    font-size: 1rem;
    display: flex !important;
  }
  .hero-navigation {
    top: 8rem;
    left: 2rem;
    right: 2rem;
  }

  .hero-text {
    left: 2rem;
    right: 2rem;
    bottom: 4rem;
  }

  h1 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .service-content {
    padding: 5rem 2rem;
  }
  .service-content h2 {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
  .service-intro-grid,
  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .service-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  footer {
    padding: 2rem 3rem 0rem 3rem;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-icons {
    margin-top: 0.5rem;
  }

  .footer-slogan {
    width: 70%;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 1rem 0;
  }
  .footer-logos {
    margin-top: 3rem;
  }
  .footer-bottom {
    padding: 1rem;
    flex-direction: column;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }

  .hero-navigation {
    display: none;
  }
  .hero-text {
    bottom: 10%;
    left: 4rem;
  }
  .hero-text p {
    max-width: 100%;
  }
  .header-text {
    width: 50%;
  }
  .menu-links {
    padding: 15% 4.4rem 2rem 4.4rem;
  }
  .language-switch {
    padding: 0.8rem 0 0 4.4rem;
  }
  .hero-navigation {
    left: 3rem;
  }
  .service-content {
    padding: 6rem 4rem;
  }
  .service-content h2 {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
  footer {
    padding: 2rem 6rem 0 6rem;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1380px) {
  .hero-text {
    left: 4rem;
    right: 4rem;
    width: calc(100% - 8rem);
  }
  h1 {
    font-size: 3rem;
    line-height: 3.3rem;
  }

  .footer-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .newsletter-wrapper {
    width: 100%;
  }
  .footer-links {
    width: 100%;
  }
  .footer-title h2 {
    font-size: 6rem;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .header-desktop__logo {
    width: 200px;
  }
  .header-desktop__links {
    gap: 1.4rem !important;
  }
  .hero-text {
    left: 4rem;
    right: 4rem;
    width: calc(100% - 8rem);
  }
  .hero-navigation {
    left: 4rem;
  }
  .service-content {
    padding: 6rem 4rem;
  }
  footer {
    padding: 2rem 6rem 0 6rem;
  }
}
