* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Zalando Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #2E2E2E;
  background: #FFFFFF;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

/* Header */
.header {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E6ED;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  padding: 0 120px;
}

.logo img {
  width: 118px;
  height: 41px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 10px;
  gap: 10px;
  height: 68px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-item a {
  text-decoration: none;
  color: #2E2E2E;
}

.nav-item.active {
  border-bottom: 2px solid #F0831D;
  color: #F0831D;
}

.nav-item span {
  font-weight: 400;
  text-align: center;
}

.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  gap: 8px;
  background: linear-gradient(180deg, #FF9B43 0%, #EC6801 100%);
  font-family: 'Zalando Sans', sans-serif;
  border-radius: 8px;
  border: none;
  color: #FFFFFF;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0px 4px 14px rgba(240, 131, 29, 0.28), 0px 2px 4px rgba(240, 131, 29, 0.22);
  transition: transform 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

.contact-btn img {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 595px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 586px;
  text-align: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  padding: 6px 10px 6px 8px;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #E2E6ED;
  border-radius: 24px;
}

.hero-badge img {
  width: 20px;
  height: 20px;
}

.hero-badge span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #2E2E2E;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-title h1 {
  font-weight: 600;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -1.2px;
  text-align: center;
  margin: 0;
}

.hero-title h1:first-child {
  color: #252A4D;
}

.gradient-text {
  background: linear-gradient(180deg, #FF9B43 0%, #EC6801 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-weight: 300;
  text-align: center;
  max-width: 586px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  gap: 8px;
  background: #252A4D;
  border-radius: 8px;
  border: none;
  color: #FFFFFF;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-primary img {
  width: 20px;
  height: 20px;
}

.btn-secondary {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 6px;
  background: #F3F3F5;
  border: 1px solid #E2E6ED;
  border-radius: 8px;
  color: #252A4D;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #E2E6ED;
}

/* Core Products Section */
.core-products {
  padding: 80px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.section-badge {
  display: flex;
  align-items: center;
  padding: 6px 10px 6px 8px;
  gap: 6px;
  background: rgba(111, 122, 138, 0.08);
  border: 1px solid #E2E6ED;
  border-radius: 20px;
}

.section-badge img {
  width: 20px;
  height: 20px;
}

.section-badge span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #2E2E2E;
}

.section-header h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: -0.8px;
  text-align: center;
  color: #252A4D;
}

.products-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.product-image {
  position: relative;
  width: 600px;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
}

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

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overlay-badge {
  display: flex;
  align-items: center;
  padding: 6px 10px 6px 8px;
  gap: 6px;
  background: rgba(111, 122, 138, 0.08);
  border: 1px solid #E2E6ED;
  border-radius: 20px;
  width: fit-content;
}

.overlay-badge span {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}

.image-overlay h3 {
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
}

.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.product-info h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  color: #252A4D;
  margin-bottom: 20px;
}

.product-info p {
  font-weight: 300;
  color: #2E2E2E;
}

.product-specs {
  display: flex;
  gap: 16px;
}

.spec-card {
  flex: 1;
  background: #F9FBFC;
  border: 1px solid #E2E6ED;
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.spec-header img {
  width: 20px;
  height: 20px;
}

.spec-header h4 {
  font-size: 18px;
  line-height: 22px;
  color: #252A4D;
}

.spec-range {
  color: #AAAAAA;
  font-size: 16px;
  line-height: 24px;
}

.spec-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #AAAAAA;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item img {
  width: 20px;
  height: 20px;
}

.feature-item span {
  font-weight: 400;
  color: #AAAAAA;
}

/* IT & UPS Section */
.it-ups {
  background: #FAFAFA;
  padding: 80px 0;
}

.it-ups-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.it-ups-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-info h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  color: #252A4D;
  margin-bottom: 20px;
}

.section-info p {
  font-weight: 300;
  color: #2E2E2E;
}

.ups-types {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ups-card {
  background: #FFFFFF;
  border: 1px solid #E2E6ED;
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 98px;
}

.ups-header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ups-header img {
  width: 24px;
  height: 24px;
}

.ups-header h4 {
  font-size: 18px;
  line-height: 22px;
  color: #252A4D;
}

.ups-range {
  font-weight: 400;
  color: #AAAAAA;
}

.it-ups-image {
  width: 600px;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
}

.it-ups-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Power Conditioning Section */
.power-conditioning {
  background: #FFFFFF;
  padding: 80px 0;
}

.power-conditioning h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  color: #252A4D;
  margin-bottom: 46px;
}

.conditioning-grid {
  display: flex;
  gap: 18px;
}

.conditioning-card {
  flex: 1;
  background: #F9FBFC;
  border: 1px solid #E2E6ED;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.conditioning-card.featured {
  background: #FFFFFF;
  box-shadow: 0px 1.55px 5.99px rgba(0, 0, 0, 0.01), 0px 6.93px 13.83px rgba(0, 0, 0, 0.02), 0px 17.24px 31.58px rgba(0, 0, 0, 0.02), 0px 33.56px 67.29px rgba(0, 0, 0, 0.03), 0px 57px 129px rgba(0, 0, 0, 0.04);
}

.conditioning-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-content h3 {
  font-size: 20px;
  line-height: 30px;
  color: #2E2E2E;
}

.card-content p {
  font-weight: 300;
  line-height: 30px;
  color: #6F7A8A;
}

/* Industries Section */
.industries {
  background: #FAFAFA;
  padding: 80px 0 100px;
}

.industries h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  text-align: center;
  color: #252A4D;
  margin-bottom: 46px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.industry-card {
  background: #FFFFFF;
  border: 1px solid #E2E6ED;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0px 1.55px 5.99px rgba(0, 0, 0, 0.01), 0px 6.93px 13.83px rgba(0, 0, 0, 0.02), 0px 17.24px 31.58px rgba(0, 0, 0, 0.02), 0px 33.56px 67.29px rgba(0, 0, 0, 0.03), 0px 57px 129px rgba(0, 0, 0, 0.04);
}

.industry-card img {
  width: 52px;
  /* box-shadow: 0px 4px 14px rgba(236, 104, 1, 0.28), 0px 2px 4px rgba(236, 104, 1, 0.22); */
}

.industry-card h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #2E2E2E;
}

/* Contact Section */
.contact {
  background: #252A4D;
  padding: 60px 0;
}

.contact-content {
  display: flex;
  align-items: center;
  gap: 54px;
}

.contact-info {
  width: 493px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card {
  background: #FAFAFA;
  border: 1px solid #E2E6ED;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 2px;
}

.contact-header img {
  width: 42px;
  height: 42px;
}

.contact-header h3 {
  font-size: 20px;
  line-height: 30px;
  color: #2E2E2E;
}

.contact-card p {
  font-size: 14px;
  line-height: 20px;
  color: #6F7A8A;
}
.contact-card p a{
  color: #6F7A8A;
  text-decoration: none;
}
.contact-card p a:hover{
  color: #F0831D;
}

.map-container {
  width: 653px;
  height: 454px;
}

.map {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #E2E6ED;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 30px 34px -20px rgba(0, 0, 0, 0.1);
}

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

.map-marker {
  position: absolute;
  top: 137px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  /* height: 30px; */
  /* box-shadow: 0px 14px 14px rgba(240, 131, 29, 0.28); */
}

.map-marker img {
  width: 100%;
  height: 100%;
}

.map-info {
  position: absolute;
  bottom: 14px;
  left: 14px;
  /* transform: translateX(-50%); */
  background: #FFFFFF;
  border: 1px solid #E2E6ED;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0px 14px 22px rgba(0, 0, 0, 0.08);
  width: 414px;
}

.map-info h4 {
  font-size: 18px;
  line-height: 22px;
  color: #041B66;
}

.map-info p {
  font-size: 14px;
  line-height: 20px;
  color: #6F7A8A;
}

.directions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.directions span {
  font-size: 14px;
  line-height: 20px;
  color: #F0831D;
}

.directions img {
  width: 24px;
  height: 24px;
}

/* Footer */
.footer {
  background: #FFFFFF;
  border-top: 1px solid #E2E6ED;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 120px;
}

.footer-logo img {
  width: 118px;
  height: 41px;
}

.footer-copyright span {
  font-weight: 300;
  color: #2E2E2E;
}

/* Responsive Design */
@media (max-width: 1200px) {

  .container,
  .header-container,
  .footer-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .products-content {
    flex-direction: column;
    gap: 30px;
  }

  .product-image {
    width: 100%;
    max-width: 600px;
  }

  .it-ups-content {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .it-ups-image {
    width: 100%;
    max-width: 600px;
  }

  .contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info {
    width: 100%;
  }

  .map-container {
    width: 100%;
    max-width: 653px;
  }
}

@media (max-width: 768px) {

  .container,
  .header-container,
  .footer-container,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-container {
    flex-direction: row;
    height: auto;
    padding: 20px;
    gap: 20px;
  }

  .navigation {
    order: 2;
    display: none;
  }

  .contact-btn {
    order: 1;
  }

  .hero-title h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .product-specs {
    flex-direction: column;
  }

  .conditioning-grid {
    flex-direction: column;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-info {
    width: 90%;
  }
  .footer-container {
    gap: 10px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .hero-title h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .section-header h2 {
    font-size: 32px;
    line-height: 40px;
  }
}