/* Reset and Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --color-primary: #eb5926;
  --color-secondary: #0d223f;
  --color-text: #0d223f;
  --color-text-light: #4f6282;
  --color-background: #ffffff;
  --color-border: #e5e5e5;
  --color-focus: #4a90e2;
  --color-error: #dc3545;
  --color-success: #28a745;
  --color-disabled: #cccccc;
  --transition-base: 0.3s ease;
  --transition-fast: 0.2s ease;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: var(--color-text);
  background-color: #ffffff;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Hero Section and Embedded Header */
.hero {
  position: relative;
  overflow: visible;
  width: 100%;
  height: 696px;
  margin: 0 auto;
  padding: 16px 15px 100px 15px;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  background: none;
}

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

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.header--hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: transparent;
  box-shadow: none;
  margin-bottom: 40px;
  width: 100%;
}

.header--hero .header__logo img {
  width: 100px;
  height: 173px;
  object-fit: contain;
}

.header--hero .header__logo {
  padding-left: 30px;
}

.header--hero .header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header--hero .nav__list {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header--hero .nav__list a {
  color: #fff;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 20px;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  padding-top: 0;
  display: inline-block;
}

.header--hero .nav__list a:hover {
  color: var(--color-primary);
}

.header--hero .header__actions {
  display: flex;
  align-items: center;
  padding-right: 32px !important;
}

.hero__content {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  width: 100%;
}

.hero__title {
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-weight: bold;
  font-size: 52px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1;
  margin-top: -50px;
  padding-left: 30px;
}

.hero__subtitle {
  font-family: "Satoshi", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 800px;
  padding-left: 30px;
}

/* Center the Browse Catalog button */
.hero__catalog-shape {
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Make hero title font smaller for better fit */
.hero__title {
  font-size: 2.2rem;
  line-height: 1.15;
  word-break: break-word;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 95vw;
}

@media (min-width: 900px) {
  .hero__title {
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 3.2rem;
  }
}

.hero__catalog-shape {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: #fff;
  width: fit-content;
  margin-bottom: 31px;
}

.btn--catalog {
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}

.btn--catalog:hover,
.btn--catalog:focus {
  background-color: #d14e1f;
  outline: none;
}

/* Next-Generation Technology Section */
.next-gen-tech {
  width: 100%;
  padding-top: 75px;
  padding-bottom: 40px;
  background: #fff;
}

.next-gen-tech__container {
  display: grid;
  grid-template-columns: 448px 224px 384px;
  align-items: start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  column-gap: 48px;
  padding-left: 0;
}

.next-gen-tech__text {
  width: 448px;
  min-width: 448px;
  height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.next-gen-tech__title {
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 16px;
  color: #0d223f;
  width: 448px;
  height: 78px;
}

.next-gen-tech__subtitle {
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #4f6282;
  padding-top: 16px;
  width: 365px;
  height: 72px;
  margin: 0;
}

.next-gen-tech__images {
  display: contents;
}

.next-gen-tech__img--left {
  border-radius: 8px;
  width: 224px;
  height: 184px;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.next-gen-tech__img--right {
  border-radius: 8px;
  width: 384px;
  height: 185px;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

/* Services Section */
.services__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 64px auto;
  width: fit-content;
}

.services__block--primary {
  width: 588px;
  height: 184px;
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: #0d223f;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.services__separator {
  height: 184px;
  border-left: 1px solid #9bacca;
  margin: 0 32px;
}

.services__block--secondary {
  width: 468px;
  height: 128px;
  font-family: "Satoshi", Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #4f6282;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: var(--color-secondary);
  padding: 80px 0 24px;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo img {
  height: 40px;
  margin-bottom: 24px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__column h4 {
  margin-bottom: 24px;
  font-size: 18px;
}

.footer__column ul {
  list-style: none;
}

.footer__column ul li {
  margin-bottom: 12px;
}

.footer__column ul a {
  color: var(--color-text-light);
  text-decoration: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer__social img:hover {
  opacity: 1;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 0;
}

/* Focus Styles */
:focus {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 1450px) {
  .hero {
    width: 100%;
    min-width: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .next-gen-tech__container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .next-gen-tech__text {
    width: 100%;
    min-width: auto;
  }

  .next-gen-tech__title {
    width: 100%;
    height: auto;
  }

  .next-gen-tech__subtitle {
    width: 100%;
    height: auto;
  }
}

/* Enhanced Tablet Responsive Design */
@media (max-width: 1200px) {
  .main-visual__container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .main-visual__grid-container {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    max-width: 520px;
  }

  .mobile-mockup__container {
    padding-left: 0;
    width: 100%;
    max-width: 445px;
  }

  .graph-section {
    padding-left: 0;
    width: 100%;
    max-width: 445px;
  }

  .services__container {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    padding: 0 20px;
  }

  .services__separator {
    display: none;
  }

  .services__block--primary,
  .services__block--secondary {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .who-we-are__cards {
    gap: 60px;
  }

  .who-we-are__card {
    width: 400px;
    height: 400px;
  }

  .who-we-are__card-content {
    max-width: 280px;
  }

  .who-we-are__card-title {
    font-size: 28px;
  }

  .who-we-are__title {
    margin-left: 0;
    text-align: center;
  }

  /* Product page improvements */
  .product-card-row {
    margin-left: 20px;
    margin-right: 20px;
    gap: 60px;
  }

  .other-products {
    position: static;
    margin-top: 40px;
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 1200px) {
  .main-visual__container {
    flex-direction: column;
    gap: 40px;
  }

  .main-visual__grid-container {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    max-width: 520px;
  }

  .mobile-mockup__container {
    padding-left: 0;
    width: 100%;
    max-width: 445px;
  }

  .graph-section {
    padding-left: 0;
    width: 100%;
    max-width: 445px;
  }

  .services__container {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .services__separator {
    display: none;
  }

  .services__block--primary,
  .services__block--secondary {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .who-we-are__cards {
    gap: 60px;
  }

  .who-we-are__card {
    width: 400px;
    height: 400px;
  }

  .who-we-are__card-content {
    max-width: 280px;
  }

  .who-we-are__card-title {
    font-size: 28px;
  }

  .who-we-are__title {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .next-gen-tech__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .next-gen-tech__text,
  .next-gen-tech__images {
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  .next-gen-tech__images {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    margin-top: 12px !important;
  }
  .next-gen-tech__img--left,
  .next-gen-tech__img--right {
    width: 48vw !important;
    max-width: 160px !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 900px) {
  /* Enhanced hero section for tablets */
  .hero__title {
    font-size: 2.5rem;
    padding-left: 0;
    text-align: center;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 1rem;
    padding-left: 0;
    text-align: center;
  }

  .header--hero .nav__list {
    gap: 24px;
  }

  .header--hero .nav__list a {
    font-size: 16px;
  }

  .next-gen-tech__title {
    font-size: 28px;
    text-align: center;
  }

  .next-gen-tech__subtitle {
    text-align: center;
  }

  /* Enhanced who-we-are section */
  .who-we-are__cards {
    flex-direction: column;
    gap: 80px;
  }

  .who-we-are__title {
    font-size: 36px;
    text-align: center;
  }

  .who-we-are__card {
    width: 350px;
    height: 350px;
  }

  .who-we-are__card-content {
    max-width: 250px;
  }

  .who-we-are__card-title {
    font-size: 24px;
  }

  .who-we-are__card-description {
    font-size: 14px;
  }

  /* Enhanced product cards */
  .product-cards-row {
    flex-direction: column;
    gap: 40px;
    margin-left: 0;
    padding: 0 20px;
  }

  .product-card {
    width: 100%;
    height: auto;
  }

  .other-products {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Better badge positioning for tablets */
  .who-we-are__badge--expertise {
    top: 50px;
    left: -5px;
  }

  .who-we-are__badge--integrity {
    bottom: 70px;
    right: -20px;
  }

  .who-we-are__badge--growth {
    bottom: 25px;
    left: 25px;
  }

  .who-we-are__badge--quality {
    top: 50px;
    left: 0px;
  }

  .who-we-are__badge--reliability {
    bottom: 70px;
    right: -25px;
  }

  .who-we-are__badge--innovation {
    bottom: 25px;
    left: 20px;
  }
}

@media (max-width: 768px) {
  /* Hide desktop nav and dropdown on mobile */
  .header--hero .header__nav,
  .header--products .header__nav {
    display: none !important;
  }
  .nav__item--dropdown .dropdown-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .mobile-menu-overlay {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 34, 63, 0.98);
    z-index: 2000;
  }
  .mobile-menu-overlay.active {
    display: flex !important;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    width: 100vw;
  }
  .mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100vw;
  }
  .mobile-menu__list a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
    padding: 16px 0;
    width: 100vw;
    text-align: center;
  }
  .mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero {
    height: auto;
    min-height: 400px;
    padding: 8px 8px 40px 8px;
  }
  .hero__background img {
    object-fit: cover;
    object-position: center center !important;
    min-height: 220px;
    max-height: 320px;
  }
  .hero__content {
    margin-top: 20px;
    text-align: center;
    padding: 0 8px;
  }
  .hero__title {
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 0;
    margin: 0 auto 12px auto;
    text-align: center;
    max-width: 95vw;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 16px;
    padding: 0;
    text-align: center;
    max-width: 95vw;
  }
  .hero__catalog-shape {
    position: relative;
    transform: none;
    margin-top: 24px;
    width: 90vw;
    max-width: 300px;
  }
  .section-container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero,
  .section-container,
  .main-visual-section,
  .main-visual__container,
  .main-visual__grid-container,
  .mobile-mockup__container,
  .graph-section__container,
  .catalog-card,
  .footer__content,
  .footer__links {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .mobile-menu,
  .mobile-menu__list,
  .mobile-menu__list a {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  .main-visual-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .main-visual__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .main-visual__grid-container {
    margin: 0 auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .main-visual__grid-image,
  .mobile-mockup__image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90vw;
    height: auto;
  }
  .services {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
  }
  .services__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
  }
  .services__block--primary,
  .services__block--secondary {
    text-align: center !important;
    margin: 0 auto !important;
    width: 100vw !important;
    max-width: 95vw !important;
    display: block !important;
  }
  .graph-section,
  .graph-section__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
  }
  .graph-section__image {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 90vw !important;
    height: auto !important;
  }
  .mobile-mockup,
  .mobile-mockup__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
  }
  .mobile-mockup__image {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 90vw !important;
    height: auto !important;
  }
}

@media (max-width: 600px) {
  /* Enhanced Mobile Hero Section */
  .hero {
    height: auto;
    padding: 8px 15px 40px 15px;
  }

  .hero__content {
    margin-top: 20px;
  }

  .hero__title,
  .hero__subtitle {
    padding-left: 0;
  }

  .header--hero .header__logo img {
    width: 60px;
    height: 100px;
  }

  .header--hero .header__logo {
    padding-left: 16px;
  }

  /* Enhanced Next-Gen Tech for Mobile */
  .next-gen-tech__title {
    font-size: 20px;
  }

  .next-gen-tech__subtitle {
    font-size: 14px;
  }

  /* Enhanced Services for Mobile */
  .services__block--primary {
    font-size: 24px;
  }

  .services__block--secondary {
    font-size: 16px;
  }

  /* Enhanced Who We Are for Mobile */
  .who-we-are {
    padding: 60px 20px;
  }

  .who-we-are__container {
    gap: 60px;
  }

  .who-we-are__title {
    font-size: 28px;
  }

  .who-we-are__card {
    width: 90vw !important;
    height: 90vw !important;
    aspect-ratio: 1/1 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 32px auto !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1) !important;
    padding: 24px !important;
    min-width: unset !important;
    min-height: unset !important;
    max-width: unset !important;
    max-height: unset !important;
  }

  .who-we-are__card-content {
    max-width: 80vw !important;
    padding: 0 8px !important;
    gap: 10px !important;
  }

  .who-we-are__badge {
    z-index: 2 !important;
  }

  .who-we-are__card-title {
    font-size: 20px;
  }

  .who-we-are__card-description {
    font-size: 13px;
  }

  /* Enhanced Badge Positioning for Mobile */
  .who-we-are__badge {
    padding: 6px 16px;
  }

  .who-we-are__badge-text {
    font-size: 12px;
  }

  .who-we-are__badge-icon {
    width: 20px;
    height: 20px;
  }

  /* Optimized Badge Positions for Mobile */
  .who-we-are__badge--expertise {
    top: 40px;
    left: -10px;
    width: 120px;
    height: 35px;
  }

  .who-we-are__badge--integrity {
    bottom: 60px;
    right: -15px;
    width: 110px;
    height: 35px;
  }

  .who-we-are__badge--growth {
    bottom: 20px;
    left: 20px;
    width: 100px;
    height: 35px;
  }

  .who-we-are__badge--quality {
    top: 40px;
    left: -5px;
    width: 100px;
    height: 35px;
  }

  .who-we-are__badge--reliability {
    bottom: 60px;
    right: -20px;
    width: 110px;
    height: 35px;
  }

  .who-we-are__badge--innovation {
    bottom: 20px;
    left: 15px;
    width: 120px;
    height: 35px;
  }

  /* Enhanced Contact Section for Mobile */
  .contact-section__title {
    font-size: 28px;
  }

  .contact-section__subtitle {
    font-size: 14px;
  }

  .contact-section__options {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .contact-option {
    width: 70px;
    height: 70px;
  }

  .contact-icon {
    max-width: 35px;
    max-height: 35px;
  }

  /* Enhanced Product Page for Mobile */
  .product-card-row {
    margin-left: 0;
    margin-right: 0;
    padding: 0 16px;
  }

  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-card__media {
    width: 100%;
    max-width: 320px;
    height: 200px;
  }

  .product-card__info {
    margin-left: 0;
    margin-top: 24px;
    align-items: center;
  }

  .product-card__title {
    font-size: 24px;
    padding-left: 20px;
  }

  .product-card__desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Enhanced Small Mobile Hero */
  .hero__title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero__subtitle {
    font-size: 0.8rem;
  }

  /* Enhanced Small Mobile Next-Gen Tech */
  .next-gen-tech__title {
    font-size: 18px;
  }

  /* Enhanced Small Mobile Services */
  .services__block--primary {
    font-size: 20px;
  }

  .services__block--secondary {
    font-size: 14px;
  }

  /* Enhanced Small Mobile Who We Are */
  .who-we-are__title {
    font-size: 24px;
  }

  .who-we-are__card {
    width: 96vw !important;
    height: 96vw !important;
    aspect-ratio: 1/1 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px auto !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1) !important;
    padding: 12px !important;
    min-width: unset !important;
    min-height: unset !important;
    max-width: unset !important;
    max-height: unset !important;
  }

  .who-we-are__card-content {
    max-width: 90vw !important;
    padding: 0 4px !important;
  }

  .who-we-are__card-title {
    font-size: 18px;
  }

  .who-we-are__card-description {
    font-size: 12px;
  }

  /* Enhanced Small Mobile Contact */
  .contact-section__title {
    font-size: 24px;
  }

  .contact-section__subtitle {
    font-size: 13px;
  }

  .contact-option {
    width: 60px;
    height: 60px;
  }

  .contact-icon {
    max-width: 30px;
    max-height: 30px;
  }

  /* Enhanced Small Mobile Product Page */
  .product-card__media {
    height: 180px;
  }

  .product-card__title {
    font-size: 20px;
    padding-left: 20px;
  }

  .product-card__desc {
    font-size: 12px;
  }

  .other-product-card__img-wrapper {
    width: 50px;
    height: 50px;
  }

  .other-product-card__name {
    font-size: 18px;
  }

  .other-product-card__desc {
    font-size: 12px;
  }
}

/* Enhanced Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Enhanced Tablet Hero */
  .hero__title {
    font-size: 3rem;
    line-height: 1.1;
  }

  /* Enhanced Tablet Next-Gen Tech */
  .next-gen-tech__container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 20px;
  }

  .next-gen-tech__img--left,
  .next-gen-tech__img--right {
    width: 180px;
    height: 140px;
  }

  /* Enhanced Tablet Main Visual */
  .main-visual__container {
    gap: 32px;
    padding: 0 20px;
  }

  .main-visual__grid-container {
    width: 400px;
    height: 400px;
  }

  .mobile-mockup__container {
    width: 400px;
    height: 400px;
  }

  .graph-section__container {
    width: 400px;
    height: 180px;
  }

  /* Enhanced Tablet Who We Are */
  .who-we-are__card {
    width: 380px;
    height: 380px;
  }

  .who-we-are__card-content {
    max-width: 260px;
  }

  .who-we-are__card-title {
    font-size: 26px;
  }

  /* Enhanced Tablet Product Page */
  .product-card-row {
    margin-left: 40px;
    margin-right: 40px;
  }

  .product-card__media {
    width: 320px;
    height: 320px;
  }

  .product-card__title {
    font-size: 32px;
    padding-left: 20px;
  }

  .product-card__desc {
    font-size: 18px;
  }
}

/* Enhanced Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  /* Enhanced Landscape Hero */
  .hero {
    height: auto;
    min-height: 400px;
  }

  .hero__content {
    margin-top: 20px;
  }

  .hero__title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  /* Enhanced Landscape Who We Are */
  .who-we-are__cards {
    flex-direction: row;
    gap: 40px;
  }

  .who-we-are__card {
    width: 250px;
    height: 250px;
  }

  .who-we-are__card-content {
    max-width: 180px;
  }

  .who-we-are__card-title {
    font-size: 18px;
  }

  .who-we-are__card-description {
    font-size: 12px;
  }

  /* Enhanced Landscape Product Page */
  .product-card {
    flex-direction: row;
    align-items: center;
  }

  .product-card__media {
    width: 200px;
    height: 200px;
  }

  .product-card__info {
    margin-left: 20px;
    margin-top: 0;
  }

  .product-card__title {
    font-size: 20px;
    padding-left: 20px;
  }

  .product-card__desc {
    font-size: 14px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero__background img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print styles */
@media print {
  .header--hero,
  .hero__catalog-shape,
  .language-selector {
    display: none;
  }

  .hero {
    height: auto;
    background: white;
  }

  .hero__title,
  .hero__subtitle {
    color: black;
  }
}

/* Enhanced Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Enhanced Performance Optimizations */
@media (max-width: 768px) {
  .hero__background img {
    will-change: transform;
  }

  .main-visual__grid-image,
  .mobile-mockup__image,
  .graph-section__image {
    will-change: auto;
  }
}

/* Enhanced Loading States */
@media (max-width: 768px) {
  .hero__background img {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
}

/* Enhanced Focus Management for Mobile */
@media (max-width: 768px) {
  .mobile-menu-toggle:focus,
  .mobile-menu__close:focus,
  .contact-option:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }
}

.mobile-mockup__container {
  padding-left: 160px;
  width: 445px;
  height: 491px;
  display: absoulte;
  justify-content: center;
  align-items: center;
  margin-top: -100px;
}

.mobile-mockup__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.graph-section {
  margin-bottom: -53px;
  padding-left: 160px;
  width: 445px;
  height: 328px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.side-by-side-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  margin-bottom: 48px;
}

.side-by-side__container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.graph-section {
  width: 445px;
  height: 328px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.graph-section__container {
  width: 445px;
  height: 220px;
  background: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}

.graph-section__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.mobile-mockup {
  width: 445px;
  height: 491px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.mobile-mockup__container {
  width: 445px;
  height: 491px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-card {
  width: 424px;
  height: 90px;
  background: #0d223f;
  border: 1px solid #0d223f;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 406px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.catalog-card__content {
  display: hidden;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  width: 100%;
  justify-content: space-between;
  padding: 0 32px;
}

.catalog-card__text {
  color: #fff;
  font-size: 24px;
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.catalog-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-visual-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  margin-bottom: 48px;
}

.main-visual__container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

.main-visual__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.main-visual__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.main-visual__grid-container {
  margin-left: 100px;
  margin-top: 100px;
  position: relative;
  width: 520px;
  height: 520px;
  border: 1px solid #bfc9d9;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f9fc;
  margin-bottom: 0;
}

.main-visual__grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.catalog-card--overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 32px;
  width: auto;
  height: 64px;
  background: #fff;
  border: 2px solid #0d223f;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.catalog-card--overlay .catalog-card__content {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
  padding: 0 24px;
}

.catalog-card--overlay .catalog-card__text {
  color: #0d223f;
  font-size: 20px;
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.catalog-card--overlay .catalog-card__icon svg {
  background: #0d223f;
  border-radius: 50%;
}

.product-cards-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  width: 100%;
  max-width: 1200px;
}

.product-card {
  width: 320px;
  height: 220px;
  background: #fff;
  border: 2px solid #bfc9d9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 20px 0 20px;
  position: relative;
}

.product-card__header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0d223f;
  margin-bottom: 32px;
}

.product-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image {
  max-width: 90%;
  max-height: 80%;
  min-width: 300px;
  min-height: 300px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Who We Are? Why We Do It? Section */
.who-we-are {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.who-we-are__container {
  max-width: 1120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.who-we-are__title {
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  text-align: center;
  line-height: 1.2;
  max-width: 544px;
  margin-left: -600px;
}

.who-we-are__cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px; /* tighten up */
  position: relative;
}

.who-we-are__card {
  width: 500px;
  height: 500px;
  background: #fff;
  border-radius: 50%;
  border: 0px solid transparent;
  box-shadow: 0 0px 32px rgba(0, 0, 0, 0.12);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-we-are__card--mission {
  order: 1; /* put mission on the left */
  margin-top: 40px; /* nudge down */
}

.who-we-are__card--history {
  order: 2; /* put history on the right */
  margin-top: -350px; /* nudge up less, so it sits lower */
}

.who-we-are__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 344px;
  gap: 16px;
}

.who-we-are__card-title {
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.2;
}

.who-we-are__card-description {
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Feature Badges */
.who-we-are__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--color-primary);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.who-we-are__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.who-we-are__badge-text {
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* History Card Badge Positions */
.who-we-are__badge--expertise {
  top: 61px;
  left: -3px;
  width: 154px;
  height: 43px;
}

.who-we-are__badge--integrity {
  bottom: 83px;
  right: -23px;
  width: 147px;
  height: 44px;
}

.who-we-are__badge--growth {
  bottom: 32px;
  left: 30px;
  width: 140px;
  height: 43px;
}

/* Mission Card Badge Positions */
.who-we-are__badge--quality {
  top: 61px;
  left: 0px;
  width: 132px;
  height: 43px;
}

.who-we-are__badge--reliability {
  bottom: 83px;
  right: -28px;
  width: 152px;
  height: 43px;
}

.who-we-are__badge--innovation {
  bottom: 32px;
  left: 20px;
  width: 159px;
  height: 46px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .who-we-are__cards {
    gap: 60px;
  }

  .who-we-are__card {
    width: 400px;
    height: 400px;
  }

  .who-we-are__card-content {
    max-width: 280px;
  }

  .who-we-are__card-title {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .who-we-are__cards {
    flex-direction: column;
    gap: 80px;
  }

  .who-we-are__title {
    font-size: 36px;
  }

  .who-we-are__card {
    width: 350px;
    height: 350px;
  }

  .who-we-are__card-content {
    max-width: 250px;
  }

  .who-we-are__card-title {
    font-size: 24px;
  }

  .who-we-are__card-description {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .who-we-are {
    padding: 60px 20px;
  }

  .who-we-are__container {
    gap: 60px;
  }

  .who-we-are__title {
    font-size: 28px;
  }

  .who-we-are__card {
    width: 90vw !important;
    height: 90vw !important;
    aspect-ratio: 1/1 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 32px auto !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1) !important;
    padding: 24px !important;
    min-width: unset !important;
    min-height: unset !important;
    max-width: unset !important;
    max-height: unset !important;
  }

  .who-we-are__card-content {
    max-width: 80vw !important;
    padding: 0 8px !important;
    gap: 10px !important;
  }

  .who-we-are__badge {
    z-index: 2 !important;
  }

  .who-we-are__card-title {
    font-size: 20px;
  }

  .who-we-are__card-description {
    font-size: 13px;
  }

  /* Adjust badge positions for smaller screens */
  .who-we-are__badge {
    padding: 6px 16px;
  }

  .who-we-are__badge-text {
    font-size: 12px;
  }

  .who-we-are__badge-icon {
    width: 20px;
    height: 20px;
  }

  /* Adjust badge positions for mobile */
  .who-we-are__badge--expertise {
    top: 40px;
    left: -10px;
    width: 120px;
    height: 35px;
  }

  .who-we-are__badge--integrity {
    bottom: 60px;
    right: -15px;
    width: 110px;
    height: 35px;
  }

  .who-we-are__badge--growth {
    bottom: 20px;
    left: 20px;
    width: 100px;
    height: 35px;
  }

  .who-we-are__badge--quality {
    top: 40px;
    left: -5px;
    width: 100px;
    height: 35px;
  }

  .who-we-are__badge--reliability {
    bottom: 60px;
    right: -20px;
    width: 110px;
    height: 35px;
  }

  .who-we-are__badge--innovation {
    bottom: 20px;
    left: 15px;
    width: 120px;
    height: 35px;
  }

  /* Enhanced Contact Section for Mobile */
  .contact-section__title {
    font-size: 28px;
  }

  .contact-section__subtitle {
    font-size: 14px;
  }

  .contact-section__options {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .contact-option {
    width: 70px;
    height: 70px;
  }

  .contact-icon {
    max-width: 35px;
    max-height: 35px;
  }

  /* Enhanced Product Page for Mobile */
  .product-card-row {
    margin-left: 0;
    margin-right: 0;
    padding: 0 16px;
  }

  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-card__media {
    width: 100%;
    max-width: 320px;
    height: 200px;
  }

  .product-card__info {
    margin-left: 0;
    margin-top: 24px;
    align-items: center;
  }

  .product-card__title {
    font-size: 24px;
    padding-left: 20px;
  }

  .product-card__desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .who-we-are__card {
    width: 96vw !important;
    height: 96vw !important;
    aspect-ratio: 1/1 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px auto !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1) !important;
    padding: 12px !important;
    min-width: unset !important;
    min-height: unset !important;
    max-width: unset !important;
    max-height: unset !important;
  }
  .who-we-are__card-content {
    max-width: 90vw !important;
    padding: 0 4px !important;
  }
}

/* RTL: ensure same circular look */
@media (max-width: 600px) {
  [dir="rtl"] .who-we-are__card {
    width: 90vw !important;
    height: 90vw !important;
    aspect-ratio: 1/1 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 32px auto !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1) !important;
    padding: 24px !important;
    min-width: unset !important;
    min-height: unset !important;
    max-width: unset !important;
    max-height: unset !important;
  }
}
@media (max-width: 480px) {
  [dir="rtl"] .who-we-are__card {
    width: 96vw !important;
    height: 96vw !important;
    aspect-ratio: 1/1 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px auto !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1) !important;
    padding: 12px !important;
    min-width: unset !important;
    min-height: unset !important;
    max-width: unset !important;
    max-height: unset !important;
  }
}

/* Enhanced Contact Section Layout */
.contact-section__intro {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}

.contact-section__title {
  font-size: 40px;
  font-weight: 700;
  color: #0d223f;
  margin-bottom: 18px;
  line-height: 1.2;
  text-align: center;
}

.contact-section__subtitle {
  font-size: 18px;
  color: #4f6282;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: center;
}

.contact-section__options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 700px;
  margin: 32px auto 24px auto;
}

@media (max-width: 700px) {
  .contact-section__options {
    flex-direction: column;
    gap: 18px;
    max-width: 100%;
  }
}

/* Enhanced Mobile Menu Improvements */
.mobile-menu-overlay {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu__list a {
  position: relative;
  overflow: hidden;
}

.mobile-menu__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-menu__list a:hover::after {
  width: 100%;
}

/* Enhanced Touch Targets for Mobile */
@media (max-width: 768px) {
  .btn--catalog {
    min-height: 48px;
    padding: 16px 32px;
  }

  .contact-option {
    min-width: 60px;
    min-height: 60px;
  }

  .mobile-menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .mobile-menu__close {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Remove icon-related CSS for contact section */
/* Remove .contact-option__icon and variants, and .contact-option__copy */

/* Keep only the layout for .contact-option */
.contact-option {
  position: relative;
  width: 102px;
  height: 102px;
  background: #0d223f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(13, 34, 63, 0.08);
}

.contact-icon {
  display: block;
  margin: 0 auto;
  max-width: 56px;
  max-height: 56px;
  width: auto;
  height: auto;
}

.section-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero.section-container {
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: 0;
  padding-right: 0;
}

/* Products Page Header Styles */
.header--products {
  border-bottom: 8px solid #23272d;
  background: #fff;
  box-shadow: 0 2px 8px rgba(13, 34, 63, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 80px;
  padding: 0;
  position: relative;
  z-index: 10;
}

.header--products .header__logo {
  padding-left: 16px;
  display: flex;
  align-items: center;
}

.header--products .header__logo img {
  width: 48px;
  height: 80px;
  object-fit: contain;
}

.header--products .header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header--products .nav__list {
  display: flex;
  gap: 56px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header--products .nav__list a {
  color: #0d223f;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  font-family: "Satoshi", Arial, sans-serif;
  transition: color 0.2s;
  padding: 8px 0;
  display: inline-block;
}

.header--products .nav__list a:hover {
  color: var(--color-primary);
}

.header--products .header__actions {
  display: flex;
  align-items: center;
  padding-right: 32px;
}

@media (max-width: 900px) {
  .header--products .nav__list {
    gap: 24px;
  }
  .header--products .header__logo img {
    width: 32px;
    height: 54px;
  }
}

@media (max-width: 768px) {
  .header--products .header__nav {
    display: none;
  }

  .header--products .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .header--products .header__logo {
    padding-left: 8px;
  }
  .header--products .header__actions {
    padding-right: 8px;
  }
}

/* Products Catalog Hero Section */
.catalog-hero {
  background: #0d223f;
  width: 100%;
  padding: 32px 0 28px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.catalog-hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.catalog-hero__title {
  color: #fff;
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: -1px;
}

.catalog-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
}

.catalog-hero__breadcrumb-separator {
  margin: 0 8px;
  font-size: 18px;
  color: #fff;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .catalog-hero__container {
    padding-left: 32px;
  }
}

@media (max-width: 600px) {
  .catalog-hero__title {
    font-size: 28px;
  }
  .catalog-hero__breadcrumb {
    font-size: 14px;
  }
  .catalog-hero {
    padding: 20px 0 16px 0;
  }
  .catalog-hero__container {
    padding-right: 12px;
  }
}

/* Product Card Row Section */
.product-card-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 72px;
  margin-left: 160px;
  margin-bottom: 40px;
}

.product-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 692px;
  height: 400px;
  background: transparent;
  border: 0px solid transparent;
}

.product-card__media {
  position: relative;
  width: 360px;
  height: 360px;
  background: #fff;
  border: 1px solid #4f6282;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

.product-card__logo {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.product-card__image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-card__image {
  max-width: 90%;
  max-height: 80%;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.product-card__brand {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.product-card__info {
  flex: 1;
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.product-card__title {
  color: #0d223f;
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.1;
  padding-left: 20px;
}

.product-card__desc {
  color: #4f6282;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  max-width: 300px;
}

@media (max-width: 900px) {
  .product-card-row {
    margin-left: 32px;
  }
  .product-card {
    width: 100vw;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .product-card-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto 24px auto !important;
    padding: 0 !important;
  }
  .other-products {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}

.other-products {
  width: 305px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.other-products__title {
  font-size: 28px;
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-weight: 400;
  color: #22304a;
  margin-bottom: 0;
  margin-top: 0;
}
.other-products__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.other-product-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  width: 305px;
  height: 80px;
}
.other-product-card__img-wrapper {
  width: 80px;
  height: 80px;
  border: 1px solid #4f6282;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.other-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.other-product-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 6px;
}
.other-product-card__name {
  font-size: 24px;
  font-family: "Inter Display", Inter, Arial, sans-serif;
  font-weight: 700;
  color: #0d223f;
  line-height: 1.2;
}
.other-product-card__desc {
  font-size: 16px;
  font-family: "Satoshi", Arial, sans-serif;
  color: #345;
  line-height: 1.2;
  opacity: 0.85;
}

@media (min-width: 1200px) {
  .other-products {
    position: absolute;
    right: 320px;
    margin-right: 0;
    z-index: 1;
  }
}

/* Language Selector */
.language-selector {
  position: relative;
  z-index: 1000;
}

.language-selector__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text);
  width: auto;
  min-width: 120px;
  transition: border-color 0.2s;
}

.language-selector__button:hover {
  border-color: var(--color-primary);
}

.language-selector__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 4px 0;
  min-width: 120px;
  display: none;
}

.language-selector__dropdown.show {
  display: block;
}

.language-selector__option {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text);
  transition: background-color 0.2s;
  white-space: nowrap;
}

.language-selector__option:hover {
  background-color: #f5f5f5;
}

/* RTL Support for Arabic */
[lang="ar"] .language-selector__button {
  flex-direction: row-reverse;
}

[lang="ar"] .language-selector__dropdown {
  right: auto;
  left: 0;
}

[lang="ar"] .language-selector__option {
  text-align: right;
}

/* RTL Layout Support */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .header--hero .nav__list {
  flex-direction: row-reverse;
}

[dir="rtl"] .header--hero .header__logo {
  padding-left: 0;
  padding-right: 30px;
}

[dir="rtl"] .header--hero .header__actions {
  padding-right: 0 !important;
  padding-left: 32px !important;
}

[dir="rtl"] .hero__title {
  text-align: right !important;
  padding-left: 0 !important;
  padding-right: 56px !important;
}

[dir="rtl"] .next-gen-tech__text {
  text-align: right;
}

[dir="rtl"] .next-gen-tech__title {
  text-align: right;
}

[dir="rtl"] .next-gen-tech__subtitle {
  text-align: right;
}

[dir="rtl"] .services__block--primary {
  text-align: right;
}

[dir="rtl"] .services__block--secondary {
  text-align: right;
}

[dir="rtl"] .who-we-are__title {
  text-align: right;
  margin-left: 0;
  margin-right: -600px;
}

[dir="rtl"] .who-we-are__card-content {
  text-align: right;
}

[dir="rtl"] .contact-section__intro {
  text-align: center;
}

[dir="rtl"] .contact-section__title {
  text-align: center;
}

[dir="rtl"] .contact-section__subtitle {
  text-align: center;
}

[dir="rtl"] .catalog-card__content {
  flex-direction: row-reverse;
}

[dir="rtl"] .product-card__info {
  text-align: right;
}

[dir="rtl"] .product-card__title {
  text-align: right;
  padding-left: 20px;
}

[dir="rtl"] .product-card__desc {
  text-align: right;
}

[dir="rtl"] .other-products__title {
  text-align: right;
}

[dir="rtl"] .other-product-card__info {
  text-align: right;
}

[dir="rtl"] .other-product-card__name {
  text-align: right;
}

[dir="rtl"] .other-product-card__desc {
  text-align: right;
}

[dir="rtl"] .catalog-hero__title {
  text-align: right;
}

[dir="rtl"] .catalog-hero__breadcrumb {
  text-align: right;
}

/* RTL Mobile Menu */
[dir="rtl"] .mobile-menu__list {
  text-align: right;
}

[dir="rtl"] .mobile-menu__list a {
  text-align: center;
}

/* RTL Badge Positions */
[dir="rtl"] .who-we-are__badge--expertise {
  left: auto;
  right: -3px;
}

[dir="rtl"] .who-we-are__badge--integrity {
  right: auto;
  left: -23px;
}

[dir="rtl"] .who-we-are__badge--growth {
  left: auto;
  right: 30px;
}

[dir="rtl"] .who-we-are__badge--quality {
  left: auto;
  right: 0px;
}

[dir="rtl"] .who-we-are__badge--reliability {
  right: auto;
  left: -28px;
}

[dir="rtl"] .who-we-are__badge--innovation {
  left: auto;
  right: 20px;
}

/* RTL Responsive Adjustments */
@media (max-width: 1200px) {
  [dir="rtl"] .who-we-are__title {
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 900px) {
  [dir="rtl"] .who-we-are__title {
    text-align: center;
  }

  [dir="rtl"] .next-gen-tech__title {
    text-align: center;
  }

  [dir="rtl"] .next-gen-tech__subtitle {
    text-align: center;
  }

  [dir="rtl"] .services__block--primary {
    text-align: center;
  }

  [dir="rtl"] .services__block--secondary {
    text-align: center;
  }
}

@media (max-width: 768px) {
  [dir="rtl"] .hero__title {
    text-align: right !important;
    padding-right: 0 !important;
  }

  [dir="rtl"] .contact-section__title {
    text-align: center;
  }

  [dir="rtl"] .contact-section__subtitle {
    text-align: center;
  }

  [dir="rtl"] .product-card__info {
    text-align: center;
  }

  [dir="rtl"] .product-card__title {
    text-align: center;
    padding-left: 20px;
  }

  [dir="rtl"] .product-card__desc {
    text-align: center;
  }
}

.language-selector--products {
  background: #0d223f;
  border-radius: 8px;
  padding: 0 8px;
  min-width: 68px;
  height: 36px;
  display: flex;
  align-items: center;
}

.language-selector--products .language-selector__button {
  background: none;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  min-width: 68px;
  height: 36px;
  cursor: pointer;
}

.language-selector--products .language-selector__icon {
  display: flex;
  align-items: center;
}

.language-selector--products .current-lang {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.language-selector--products .language-selector__arrow {
  margin-left: 4px;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.language-selector--products .language-selector__dropdown {
  background: #fff;
  color: #0d223f;
}

.header--hero .nav__list,
.header--hero .language-selector--products {
  margin-top: 16px;
}

.header--hero .nav__list a {
  padding-top: 0;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-right: 16px;
}

.mobile-menu-toggle__line {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .mobile-menu-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .mobile-menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .mobile-menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 34, 63, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__list a {
  color: #fff;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 24px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: block;
  padding: 12px 0;
}

.mobile-menu__list a:hover {
  color: var(--color-primary);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Styles for Products Page */
.header--products .mobile-menu-toggle__line {
  background: #0d223f;
}

.header--products .mobile-menu-overlay {
  background: rgba(13, 34, 63, 0.98);
}

.header--products .mobile-menu__list a {
  color: #fff;
}

.header--products .mobile-menu__list a:hover {
  color: var(--color-primary);
}

[dir="rtl"] .product-card-row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 160px;
  margin-left: 0;
  gap: 40px;
  position: relative;
}

[dir="rtl"] .product-card {
  flex-direction: row-reverse;
  align-items: flex-start;
}

[dir="rtl"] .product-card__info {
  margin-left: 0;
  margin-right: 32px;
  align-items: flex-end;
  text-align: right;
}

[dir="rtl"] .other-products {
  position: static;
  left: auto;
  right: auto;
  margin: 0;
  z-index: auto;
  width: 305px;
  min-width: 260px;
}

@media (max-width: 1200px) {
  [dir="rtl"] .product-card-row {
    margin-right: 0;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  [dir="rtl"] .product-card-row {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    gap: 32px;
  }
  [dir="rtl"] .product-card {
    flex-direction: column;
    align-items: center;
  }
  [dir="rtl"] .product-card__info {
    margin-right: 0;
    margin-top: 24px;
    align-items: center;
    text-align: center;
  }
  [dir="rtl"] .other-products {
    width: 100%;
    min-width: 0;
    margin: 0 auto;
  }
}

@media (min-width: 1920px) {
  [dir="rtl"] .product-card {
    padding-right: 160px;
  }
  [dir="rtl"] .other-products {
    padding-left: 150px;
    margin-right: 200px;
  }
}

[dir="rtl"] .header--products .header__logo {
  padding-right: 20px;
}
[dir="rtl"] .header--products .header__actions {
  padding-left: 20px;
}

@media (max-width: 700px) {
  .contact-section__options {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
}

/* Hide Browse Catalog button on tablet and mobile */
@media (max-width: 1024px) {
  .hero__catalog-shape {
    display: none !important;
  }
}

/* Move hero image to the right by 30% on tablet and mobile */
@media (max-width: 1024px) {
  .hero__background img {
    object-position: 35% center !important;
  }
}

/* Center next-generation section images and text on tablet and mobile */
@media (max-width: 1100px) {
  .next-gen-tech__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .next-gen-tech__text,
  .next-gen-tech__images {
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  .next-gen-tech__images {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    margin-top: 12px !important;
  }
  .next-gen-tech__img--left,
  .next-gen-tech__img--right {
    width: 48vw !important;
    max-width: 160px !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }
}

/* Center the main-visual-section (attached section) on tablet and mobile */
@media (max-width: 1200px) {
  .main-visual-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .main-visual__container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
  }
  .main-visual__grid-container {
    margin-left: 0 !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
  }
}

/* Center who are we? why we do it? with the circles on tablet and mobile */
@media (max-width: 1200px) {
  .who-we-are__title {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
  }
  .who-we-are__container {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .who-we-are__cards {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
  }
  .who-we-are__card {
    margin: 0 auto !important;
  }
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: 1.2rem !important;
    line-height: 1.1 !important;
  }
}

/* Dropdown Menu Styles */
.nav__item--dropdown {
  position: relative;
}

.nav__link--dropdown::after {
  content: "\25BC";
  margin-left: 8px;
  font-size: 0.7em;
  vertical-align: middle;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 0;
  width: max-content;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  z-index: 1000;
  padding: 4px 0;
  list-style: none;
  white-space: nowrap;
}

.nav__item--dropdown:hover > .dropdown-menu,
.nav__item--dropdown:focus-within > .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 8px 18px;
  color: #222 !important;
  background: transparent;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
  min-width: 120px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: var(--color-primary, #eb5926);
  color: #fff !important;
}

/* RTL Support */
[dir="rtl"] .nav__item--dropdown {
  position: relative;
}
[dir="rtl"] .nav__link--dropdown::after {
  content: "\25BC";
  margin-right: 8px;
  margin-left: 0;
}
[dir="rtl"] .dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
  min-width: 0;
  width: max-content;
  white-space: nowrap;
}
[dir="rtl"] .dropdown-menu a {
  padding: 8px 18px 8px 10px;
  color: #222 !important;
  background: transparent;
  min-width: 120px;
}
[dir="rtl"] .dropdown-menu a:hover,
[dir="rtl"] .dropdown-menu a:focus {
  background: #eb5926;
  color: #fff !important;
}

@media (max-width: 768px) {
  .hero {
    padding: 12px 8px 32px 8px !important;
    min-height: 340px !important;
  }
  .hero__content {
    margin-top: 12px !important;
    padding: 0 8px !important;
  }
  .hero__title {
    font-size: 1.3rem !important;
    padding: 0 !important;
    margin: 0 auto 10px auto !important;
    text-align: center !important;
    max-width: 95vw !important;
  }
  .hero__subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 12px !important;
    padding: 0 !important;
    text-align: center !important;
    max-width: 95vw !important;
  }
  .next-gen-tech__container {
    padding: 0 8px !important;
  }
  .next-gen-tech__images {
    padding-top: 30px;
    gap: 8px !important;
  }
  .next-gen-tech__img--left,
  .next-gen-tech__img--right {
    width: 120px !important;
    height: 90px !important;
  }
  .main-visual-section,
  .main-visual__container,
  .main-visual__grid-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100vw !important;
  }
  .main-visual__grid-image,
  .mobile-mockup__image {
    max-width: 92vw !important;
  }
  .services__container {
    padding: 0 8px !important;
  }
  .services__block--primary,
  .services__block--secondary {
    max-width: 98vw !important;
    font-size: 1.1rem !important;
    padding: 8px 0 !important;
  }
  .who-we-are {
    padding: 32px 8px !important;
  }
  .who-we-are__container {
    gap: 32px !important;
    padding: 0 !important;
  }
  .who-we-are__title {
    font-size: 1.2rem !important;
    padding: 0 !important;
    margin: 0 auto 12px auto !important;
    text-align: center !important;
  }
  .who-we-are__card {
    width: 90vw !important;
    max-width: 320px !important;
    height: auto !important;
    min-height: 180px !important;
    margin: 0 auto 16px auto !important;
  }
  .who-we-are__card-content {
    max-width: 90vw !important;
    padding: 0 8px !important;
  }
  .contact-section__container {
    padding: 0 8px !important;
  }
  .contact-section__options {
    gap: 10px !important;
    flex-wrap: wrap !important;
  }
  .contact-option {
    width: 54px !important;
    height: 54px !important;
  }
  .contact-icon {
    max-width: 28px !important;
    max-height: 28px !important;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 8px 4px 24px 4px !important;
  }
  .who-we-are {
    padding: 24px 4px !important;
  }
  .who-we-are__card {
    max-width: 98vw !important;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.1rem !important;
  }
  .who-we-are__title {
    font-size: 1rem !important;
  }
}

/* RTL (Arabic) mobile overrides */
@media (max-width: 768px) {
  [dir="rtl"] .hero__title {
    text-align: right !important;
    padding-right: 16px !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: auto !important;
  }
  [dir="rtl"] .hero__content {
    text-align: right !important;
    padding-right: 8px !important;
    padding-left: 0 !important;
  }
  [dir="rtl"] .who-we-are__title {
    text-align: right !important;
    padding-right: 8px !important;
    padding-left: 0 !important;
  }
  [dir="rtl"] .who-we-are__card-content {
    text-align: right !important;
    padding-right: 8px !important;
    padding-left: 0 !important;
  }
  [dir="rtl"] .contact-section__title,
  [dir="rtl"] .contact-section__subtitle {
    text-align: right !important;
    padding-right: 8px !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .who-we-are__card-content,
  .services__block--primary,
  .services__block--secondary,
  .next-gen-tech__text,
  .next-gen-tech__subtitle,
  .contact-section__container,
  .contact-section__title,
  .contact-section__subtitle {
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  .who-we-are__card-content,
  .services__block--primary,
  .services__block--secondary,
  .next-gen-tech__text,
  .next-gen-tech__subtitle,
  .contact-section__container,
  .contact-section__title,
  .contact-section__subtitle {
    text-align: center !important;
  }
}
@media (max-width: 600px) {
  [dir="rtl"] .who-we-are__card-content,
  [dir="rtl"] .services__block--primary,
  [dir="rtl"] .services__block--secondary,
  [dir="rtl"] .next-gen-tech__text,
  [dir="rtl"] .next-gen-tech__subtitle,
  [dir="rtl"] .contact-section__container,
  [dir="rtl"] .contact-section__title,
  [dir="rtl"] .contact-section__subtitle {
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  [dir="rtl"] .who-we-are__card-content,
  [dir="rtl"] .services__block--primary,
  [dir="rtl"] .services__block--secondary,
  [dir="rtl"] .next-gen-tech__text,
  [dir="rtl"] .next-gen-tech__subtitle,
  [dir="rtl"] .contact-section__container,
  [dir="rtl"] .contact-section__title,
  [dir="rtl"] .contact-section__subtitle {
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  .graph-section,
  .graph-section__container {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow-x: hidden !important;
  }
  .graph-section__image {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 220px !important;
    min-height: 120px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
  }
}
@media (max-width: 480px) {
  .graph-section,
  .graph-section__container {
    height: 300px !important;
    min-height: 200px !important;
  }
  .graph-section__image {
    height: 300px !important;
    min-height: 200px !important;
  }
}

@media (max-width: 600px) {
  .who-we-are__badge {
    font-size: 11px !important;
    padding: 4px 10px !important;
    min-width: 60px !important;
    min-height: 28px !important;
    z-index: 2 !important;
  }
  .who-we-are__badge--quality {
    top: 18px !important;
    left: 18px !important;
  }
  .who-we-are__badge--reliability {
    top: 18px !important;
    right: 18px !important;
  }
  .who-we-are__badge--innovation {
    bottom: 18px !important;
    left: 18px !important;
  }
  .who-we-are__badge--expertise {
    top: 18px !important;
    left: 18px !important;
  }
  .who-we-are__badge--integrity {
    top: 18px !important;
    right: 18px !important;
  }
  .who-we-are__badge--growth {
    bottom: 18px !important;
    left: 18px !important;
  }
}
@media (max-width: 480px) {
  .who-we-are__badge {
    font-size: 10px !important;
    padding: 2px 6px !important;
    min-width: 48px !important;
    min-height: 22px !important;
  }
  .who-we-are__badge--quality,
  .who-we-are__badge--expertise {
    top: 8px !important;
    left: 8px !important;
  }
  .who-we-are__badge--reliability,
  .who-we-are__badge--integrity {
    top: 8px !important;
    right: 8px !important;
  }
  .who-we-are__badge--innovation,
  .who-we-are__badge--growth {
    bottom: 8px !important;
    left: 8px !important;
  }
}

@media (max-width: 600px) {
  .section-container,
  .next-gen-tech__container {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}
@media (max-width: 480px) {
  .section-container,
  .next-gen-tech__container {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

.hero__title {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 56px !important;
}
@media (max-width: 900px) {
  .hero__title {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 24px !important;
  }
}
@media (max-width: 600px) {
  .hero__title {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 12px !important;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 1rem !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }
}

@media (max-width: 700px) {
  .product-card__media {
    width: 98vw !important;
    max-width: 340px !important;
    height: 60vw !important;
    max-height: 340px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 12px auto !important;
  }
  .product-card__image {
    max-width: 96vw !important;
    max-height: 56vw !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }
  .product-card__title {
    font-size: 1.5rem !important;
    padding-left: 20px !important;
  }
}
