@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;700;800&family=Instrument+Serif&family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f8f9fa;
  overflow-x: hidden;
  width: 100%;
}

/* Navbar Styling */
.navbar {
  background: #fff;
  height: 77px;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar.nav-visible {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.nav-container {
  width: 1240px;
  height: 77px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 100px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 35px;
  flex: 1;
  justify-content: flex-end;
  margin-left: auto;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #4a5568;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 10px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #1a202c;
}

.dropdown {
  position: relative;
}

.arrow {
  border: solid #4a5568;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 5px;
  vertical-align: middle;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  list-style: none;
  padding: 10px 0;
  border-radius: 6px;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  border-radius: 6px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.btn-contact {
  background: #2e3b8e;
  color: white !important;
 
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}



.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px auto;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0;
  }

  .nav-container {
    width: 100%;
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    left: -100%;
    top: 77px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 15px 0;
    margin: 0;
  }
}

/* Hero Section */
.hero {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/public/hero_bg.png");
  background-color: #ffffff;

  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.hero-container {
  display: flex;
  gap: 60px;
  max-width: 1240px;
}

/* Carousel - EXACT SPECS APPLIED */
.carousel-wrapper {
  width: 570px;
  height: 670px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transform: rotate(0deg);
}

.main-carousel {
  border: #e5e5e5 3px solid;
  flex: 1;
  background: white;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.carousel-item {
  display: none;
  width: 100%;
  height: 100%;
}

.carousel-item.active {
  display: block;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  height: 70px;
}

.thumb {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  border: 2.5px solid #2e3b8e;
}

/* Content Styling */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.breadcrumb {
  color: #a0aec0;
  font-size: 14px;
}

.badge-row {
  display: flex;
  gap: 10px;
}

.badge {
  border: 1px solid #e2e8f0;
  background: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  color: #2e3b8e;
  flex-shrink: 0;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 120%;
  color: #1a202c;
  margin-top: 16px;
  letter-spacing: -0.5px;
  font-family: "Urbanist", sans-serif;
}

.feature-list {
  list-style: none;
  font-family: "Inter", sans-serif;
  font-style: thin;
}

.feature-list li {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 400;

  line-height: 24px;
  display: flex;
  align-items: center;
}

.feature-list li::before {
  content: url("/public/svgs/tag.svg");
  color: #2e3b8e;
  margin-right: 12px;
  font-weight: 900;
}

/* Pricing Card Styling */
.pricing-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #edf2f7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.price-label {
  font-size: 14px;
  color: #a0aec0;
}
.price-value {
  font-size: 28px;
  font-weight: 400;

  margin: 5px 0 15px;
}

.tag-row {
  display: flex;
  gap: 10px;
}
.tag {
  background: #fef3c7;
  color: #92400e;
  padding: 8px 12px;

  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.cert-note {
  display: inline-block;
  font-size: 12px;
  color: #0d0d0d;
  margin-top: 15px;
  background: #f3f4f6;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 700;
}

/* Buttons */
.button-row {
  margin-top: 24px;
  display: flex;
  gap: 15px;
}
.btn-primary {
  background: #2b3990;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  min-width: 189px;

  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.6%;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #cbd5e0;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-secondary img {
  width: 16px;
  height: 16px;
  display: block;
}

/* Nav Arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.prev {
  left: 15px;
}
.next {
  right: 15px;
}

/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 24px 16px 32px;
  }

  .hero-container {
    flex-direction: column;
    gap: 20px;
  }

  .hero-content {
    order: 1;
    width: 100%;
    gap: 14px;
  }

  /* 1. Badges Section */
  .badge-row {
    order: 0;
    flex-wrap: wrap;
    gap: 10px;
  }

  .badge {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 8px;
    white-space: nowrap;
  }

  /* 2. Carousel Adjustments */
  .carousel-wrapper {
    order: 2;
    width: 100%;
    height: auto;
    gap: 12px;
  }

  .main-carousel {
    height: 400px;
    border-radius: 18px;
  }

  .thumbnail-row {
    grid-template-columns: repeat(5, 1fr);
    height: 64px;
    gap: 8px;
  }

  .thumbnail-row .thumb {
    border-radius: 10px;
  }

  /* Show only the first five thumbnails on mobile */
  .thumbnail-row .thumb:nth-child(n + 6) {
    display: none;
  }

  /* 3. Typography */
  .hero-title {
    font-size: 32px;
    margin: 10px 0 6px;
    line-height: 1.15;
  }

  .feature-list {
    padding-left: 0;
  }

  .feature-list li {
    font-size: 15px;
    margin-top: 16px;
    margin-bottom: 10px;
    line-height: 24px;
  }

  /* 4. Pricing Card (The Yellow Tags) */
  .pricing-card {
    padding: 20px;
    margin-top: 6px;
    border-radius: 14px;
  }

  .price-value {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .tag-row {
    flex-direction: column; /* Stack 'Shipping' and 'Returns' */
    gap: 6px;
  }

  .tag {
    width: 100%; /* Full width yellow bars like the screenshot */
    display: block;
    text-align: left;
    background: #fef3c7;
    padding: 10px;
  }

  .cert-note {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }

  /* 5. Buttons */
  .button-row {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    text-align: center;
    justify-content: center;
  }
}

/* Tablet-specific hero layout (keep desktop/mobile unchanged) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 32px 18px 40px;
  }

  .hero-container {
    flex-direction: column;
    gap: 28px;
    max-width: 920px;
  }

  .hero-content {
    order: 1;
    width: 100%;
    gap: 16px;
  }

  .carousel-wrapper {
    order: 2;
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .main-carousel {
    height: 560px;
    border-radius: 22px;
  }

  .thumbnail-row {
    width: 100%;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    height: 70px;
  }

  .thumb {
    border-radius: 10px;
  }

  .badge-row {
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: 46px;
    line-height: 1.14;
    margin: 10px 0 6px;
  }

  .feature-list {
    padding-left: 0;
  }

  .feature-list li {
    margin-top: 14px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 26px;
  }

  .pricing-card {
    width: 100%;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  }

  .price-value {
    font-size: 26px;
  }

  .tag-row {
    flex-wrap: wrap;
  }

  .button-row {
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
  }
}
.btn-primary {
  background: #2e3b8e;
}

.btn-secondary {
  border: 1.5px solid #2e3b8e;
  color: #2e3b8e;
}

.nav-btn {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.prev {
  left: 12px;
}

.next {
  right: 12px;
}

.trust-section {
  padding: 60px 20px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/public/hero_bg.png");
  background-color: rgba(255, 255, 255, 0.6);

  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.trust-title {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  margin-bottom: 40px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.logo-grid {
  --logo-gap: 24px;
  display: flex;
  gap: var(--logo-gap);
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 6px;
  scroll-behavior: smooth;
}

.logo-item {
  flex: 0 0 calc((100% - 2 * var(--logo-gap)) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.logo-item img {
  height: 82px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-grid {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    gap: 32px 48px;
  }

  .logo-item {
    flex: 0 0 160px;
  }

  .logo-item img {
    height: 132px;
  }
}

/* Tablet: show 5 logos per row */
@media (min-width: 769px) and (max-width: 1024px) {
  .logo-grid {
    gap: 20px;
  }

  .logo-item {
    flex: 0 0 calc((100% - 4 * 20px) / 5);
    max-width: calc((100% - 4 * 20px) / 5);
    /* Hide any items beyond the first five for tablet */
    &:nth-child(n + 6) {
      display: none;
    }
  }

  .logo-item img {
    height: 110px;
  }
}

/* Technical Specifications Section */
.tech-specs-section {
  background: #111827;
  color: white;
  padding: 80px 20px;
}

.tech-specs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tech-specs-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Urbanist", sans-serif;
}

.tech-specs-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #d1d5db;
  margin-bottom: 50px;
  max-width: 600px;
}

.specs-table-wrapper {
  background: #1f2937;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table thead {
  background: #4b5563;
}

.specs-table th {
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #e5e7eb;
}

.specs-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #4b5563;
  font-size: 14px;
  color: #d1d5db;
}

.specs-table tbody tr:last-child td {
  border-bottom: none;
}

.specs-table tbody tr:hover {
  background: #3f4655;
}

.specs-button-wrapper {
  display: flex;
  justify-content: center;
}

.specs-download-btn {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid white;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.specs-download-btn:hover {
  background: transparent;
  color: white;
}

/* Built to Last Features Section */
.features-section {
  padding: 80px 20px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/public/hero_bg.png");
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background-attachment: fixed;
  position: relative;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  z-index: -1;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  font-family: "Urbanist", sans-serif;
}

.features-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #717171;
  margin-bottom: 60px;
  max-width: 700px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.feature-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card img {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  object-fit: contain;
}

.feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  font-family: "Urbanist", sans-serif;
}

.feature-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #717171;
  margin: 0;
}

.features-button-wrapper {
  display: flex;
  justify-content: center;
}

.features-cta-btn {
  background: #2e3b8e;
  color: white;
  padding: 14px 40px;

  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.features-cta-btn:hover {
  background: #1f2a63;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(46, 59, 142, 0.3);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 120%;
  }

  .features-subtitle {
    font-size: 14px;
  }
}

.gap {
  height: 44px;
  background-color: white;
}

/* FAQ Section */
.faq-section {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/public/hero_bg.png");
  background-color: rgba(255, 255, 255, 0.6);

  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background-attachment: fixed;
  padding: 80px 20px;
}

.faq-container {
  max-width: 1280px;
  margin: 0 auto;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 60px;
  font-family: "Urbanist", sans-serif;
}

.faq-title-highlight {
  color: #2e3b8e;
}

.faq-list {
  margin-bottom: 60px;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.faq-item:first-child {
  border-color: #d1d5db;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #1a202c;
  text-align: left;
  letter-spacing: -0.6%;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #F1F2F3;
  color: white;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: white;
  background-color: #2b3990;
  border-radius: 50%;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 24px;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.faq-catalogue {
  background: #f7f8f9;
  border: 1px solid #e5e7eb;
  width: 100%;
  height: 132px;
  max-width: 1280px;
  border-radius: 20px;
  padding: 40px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.catalogue-left {
  flex: 1;
  min-width: 0;
}

.catalogue-title {
  font-size: 26px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 12px;
  font-family: "Urbanist", sans-serif;
  line-height: 1.2;
}

.catalogue-subtitle {
  color: #717171;
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.5;
}

.catalogue-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 360px;
}

.catalogue-form {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.catalogue-input {
  flex: 0 0 auto;
  width: 100%;
  height: 40px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.catalogue-input::placeholder {
  color: #b0b0b0;
}

.catalogue-input:focus {
  outline: none;
  border-color: #2e3b8e;
  box-shadow: 0 0 0 3px rgba(46, 59, 142, 0.1);
  background: white;
}

.catalogue-btn {
  background: #2e3b8e;
  color: white;
  padding: 14px 40px;
  border: none;
  height: 40px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* Table-friendly variant (opt-in so regular web/mobile remain unchanged) */
.faq-catalogue.table-fit,
td .faq-catalogue,
.table .faq-catalogue {
  height: auto;
  padding: 24px;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: none;
}

.faq-catalogue.table-fit .catalogue-right,
td .faq-catalogue .catalogue-right,
.table .faq-catalogue .catalogue-right {
  min-width: 0;
  width: 100%;
}

.faq-catalogue.table-fit .catalogue-form,
td .faq-catalogue .catalogue-form,
.table .faq-catalogue .catalogue-form {
  flex-wrap: wrap;
}

.faq-catalogue.table-fit .catalogue-btn,
td .faq-catalogue .catalogue-btn,
.table .faq-catalogue .catalogue-btn {
  width: 100%;
}

/* Tablet adjustments: keep web/mobile unchanged */
@media (min-width: 769px) and (max-width: 1024px) {
  .catalogue-title {
    font-size: 22px;
    line-height: 1.25;
  }

  .catalogue-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 36px;
  }

  .faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 16px !important;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px 16px !important;
  }

  .catalogue-form {
    flex-direction: column;
  }

  .catalogue-btn {
    width: 100%;
  }

  .faq-catalogue {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 18px;
    width: 328px;
    height: auto;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }

  .catalogue-left {
    width: 100%;
  }

  .catalogue-title {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 400;
  }

  .catalogue-subtitle {
    font-size: 16px;
  }

  .catalogue-right {
    width: 100%;
    min-width: auto;
    gap: 16px;
  }

  .catalogue-form {
    width: 100%;
  }

  .catalogue-input {
    font-size: 15px;
    padding: 14px 16px;
  }

  .catalogue-btn {
    font-size: 14px;

    border-radius: 14px;
  }
}

:root {
  --card-radius: 24px;
}

.applications-section {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/public/hero_bg.png");
  background-color: #ffffff;
  padding: 80px 20px;
  border-bottom: 1px solid #e5e7eb;
  font-family: "Urbanist", sans-serif;
  overflow: hidden;
}

.applications-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Header Layout */
.applications-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.header-text {
  flex: 1;
  max-width: 700px;
}

.applications-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a202c;
  line-height: 1.2;
  font-family: "Urbanist", sans-serif;
}

.applications-subtitle {
  color: #717171;
  line-height: 1.6;
  font-size: 16px;
}

/* Navigation Buttons */
.applications-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  margin-top: 0;
}

.app-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #2e3b8e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* .app-nav-btn:hover {
  background: #2E3B8E;
  color: white;
  border-color: #2E3B8E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 59, 142, 0.2);
} */

/* Carousel Track */
.applications-carousel-wrapper {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.applications-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1024px) {
  .applications-carousel-wrapper {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 12px;
  }
}

.applications-carousel {
  display: flex;
  gap: 16px;
  padding: 0 8px;
  transition: transform 0.5s ease-out;
  width: fit-content;
  scroll-behavior: smooth;
}

/* Card Styling */
.application-card {
  min-width: 320px;
  width: 360px;
  height: 400px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

.application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Overlay for Text Readability */
.app-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: white;
}

.app-card-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 12px;
  font-family: "Urbanist", sans-serif;
}

.app-card-text {
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .applications-section {
    padding: 60px 20px;
  }

  .applications-title {
    font-size: 32px;
  }

  .application-card {
    min-width: 280px;
    width: 280px;
    height: 380px;
  }

  .app-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .applications-section {
    padding: 40px 20px;
  }

  .applications-header {
    flex-direction: column;
    margin-bottom: 40px;
    align-items: flex-start;
  }

  .applications-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .applications-subtitle {
    font-size: 14px;
  }

  .application-card {
    min-width: 200px;
    width: 200px;
    height: 280px;
  }

  .app-card-overlay {
    padding: 16px;
  }

  .app-card-title {
    font-size: 14px;
  }

  .app-card-text {
    font-size: 12px;
  }

  .app-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Manufacturing Process Section */
:root {
  --primary-blue: #2e3b8e;
  --text-dark: #1a202c;
  --text-gray: #4a5568;
  --border-light: #e2e8f0;
}

.manufacturing-section {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/public/hero_bg.png");
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: "Inter", "Urbanist", sans-serif;
  background-color: #f9fafb;
}

.manufacturing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.manufacturing-header {
  text-align: center;
  margin-bottom: 40px;
}

.manufacturing-title {
  font-size: 44px;
  font-weight: 700;
  color: #1a202c;
  font-family: "Urbanist", sans-serif;
  margin: 0 0 8px 0;
}

.manufacturing-subtitle {
  font-size: 16px;
  color: #717171;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.manufacturing-content {
  background: white;
  height: 447px;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0px 16px 32px -12px #585c5f1a;
  border: 1px solid var(--border-light);
}

/* --- Tabs Navigation with Connecting Lines --- */
.process-tabs-container {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

/* The horizontal line behind buttons */
.process-tabs-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  height: 1px;
  background: var(--border-light);
  z-index: 1;
}

.process-tabs {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
  gap: 10px;
}

.process-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  background: white;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.process-tab.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

/* --- Content Layout --- */
.process-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.process-content.active {
  display: grid;
  height: 315px;
}

.process-details {
  width: 560px;
  height: 224px;
}

.process-title {
  font-size: 28px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  letter-spacing: -0.6%;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.process-description {
  font-size: 18px;
  font-weight: 400;
  font-style: regular;
  line-height: 1.6;

  color: #4d545c;
  margin-bottom: 30px;
}

/* --- Feature List with Blue Circles --- */
.process-features {
  list-style: none;
  padding: 0;
}

.process-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.process-features li::before {
  content: url("/public/svgs/tag.svg");
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;

  border-radius: 50%;
}

/* --- Image & Carousel Controls --- */
.process-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 32px;
}

.process-image img {
  width: 560px;
  height: 315px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: none;
  justify-content: space-between;
  padding: 0 15px;
  transform: translateY(-50%);
}

.carousel-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  color: #4d545c;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
  .process-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-tabs-container::before {
    display: none;
  }
  .process-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  .manufacturing-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    font-family: "Urbanist", sans-serif;
    margin: 0 0 8px 0;
  }
}

/* Mobile layout for process card */
@media (max-width: 768px) {
  .manufacturing-section {
    padding: 32px 16px;
    background-color: #f5f7fb;
  }

  .process-tabs-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 16px;
  }

  .process-tabs {
    display: none;
  }

  .process-step-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: var(--primary-blue);
    color: #ffffff;
    border-radius: 18px;
    font-weight: 700;
    font-size: 18px;
    width: fit-content;
    margin-bottom: 14px;
  }

  .process-step-badge-container {
    margin-bottom: 0;
  }

  .manufacturing-content {
    height: auto;
    padding: 20px;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }

  .process-tabs-container {
    display: none;
  }

  .process-content,
  .process-content.active {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: auto;
  }

  .process-details {
    width: 100%;
    height: auto;
  }

  .process-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .process-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #4a5568;
  }

  .process-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .process-features li {
    padding-left: 0;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
  }

  .process-features li::before {
    content: url("/public/svgs/tag.svg");
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: #2e3b8e;
    font-size: 20px;
  }

  .process-image {
    width: 100%;
    padding-bottom: 0;
    border-radius: 20px;
    overflow: hidden;
  }

  .process-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

  .process-image {
    padding-bottom: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .process-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
  }

  .carousel-controls {
    position: static;
    transform: none;
    padding: 0;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
  }

  .carousel-arrow {
    width: 48%;
    height: 56px;
    border-radius: 18px;
    border: 1px solid #d6d8e0;
    background: #ffffff;
    color: #111827;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}
  /* Tablet: use mobile layout but wider canvas */
  @media (min-width: 769px) and (max-width: 1024px) {
    .manufacturing-section {
      padding: 40px 24px;
      background-color: #f5f7fb;
    }

    .manufacturing-container {
      max-width: 100%;
    }

    .process-tabs-container {
      display: none;
    }

    .process-tabs {
      display: none;
    }

    .process-step-badge {
      display: inline-flex;
      align-items: center;
      padding: 10px 18px;
      background: var(--primary-blue);
      color: #ffffff;
      border-radius: 18px;
      font-weight: 700;
      font-size: 18px;
      width: fit-content;
      margin-bottom: 14px;
    }

    .process-step-badge-container {
      margin-bottom: 0;
    }

    .manufacturing-content {
      width: 100%;
      height: auto;
      padding: 24px;
      border-radius: 28px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .process-content,
    .process-content.active {
      display: flex;
      flex-direction: column;
      gap: 18px;
      height: auto;
    }

    .process-details {
      width: 100%;
      height: auto;
    }

    .process-title {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .process-description {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 12px;
      color: #4a5568;
    }

    .process-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .process-features li {
      padding-left: 0;
      gap: 12px;
      font-size: 17px;
      font-weight: 700;
    }

    .process-features li::before {
      content: url("/public/svgs/tag.svg");
      position: static;
      width: auto;
      height: auto;
      background: none;
      color: #2e3b8e;
      font-size: 20px;
    }

    /* Enable prev/next controls on tablet similar to mobile, slightly wider */
    .carousel-controls {
      position: static;
      transform: none;
      padding: 0;
      margin-top: 16px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
    }

    .carousel-arrow {
      width: 50%;
      height: 56px;
      border-radius: 18px;
      border: 1px solid #d6d8e0;
      background: #ffffff;
      color: #111827;
      font-size: 18px;
      font-weight: 600;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
  }

/* Desktop-only: show overlay arrows over process image */
@media (min-width: 1025px) {
  .process-image .carousel-controls {
    display: flex;
    pointer-events: none;
  }

  .process-image .carousel-controls .carousel-arrow {
    pointer-events: auto;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    font-size: 0;
    padding: 0;
  }

  .process-image .carousel-controls .carousel-arrow.prev::after {
    content: "←";
    font-size: 18px;
    color: #4d545c;
  }

  .process-image .carousel-controls .carousel-arrow.next::after {
    content: "→";
    font-size: 18px;
    color: #4d545c;
  }
}

/* Testimonials Section */
.testimonials-section {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/public/hero_bg.png");
  background-color: #ffffff;
  padding: 80px 20px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  font-family: "Urbanist", sans-serif;
}

.testimonials-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Header Layout */
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
  text-align: center;
}

.testimonials-header .header-text {
  flex: 1;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a202c;
  line-height: 1.2;
  font-family: "Urbanist", sans-serif;
}

.testimonials-subtitle {
  color: #717171;
  line-height: 1.6;
  font-size: 16px;
}

/* Navigation Buttons */
.testimonials-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  margin-top: 0;
}

.testimonial-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #2e3b8e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.testimonial-nav-btn:hover {
  background: #2e3b8e;
  color: white;
  border-color: #2e3b8e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 59, 142, 0.2);
}

/* Carousel Track */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
}

.testimonials-carousel {
  display: flex;
  gap: 24px;
  padding: 0 40px;
  
  transition: transform 0.5s ease-out;
  width: fit-content;
}

/* Testimonial Card Styling */
.testimonial-card {
  min-width: 340px;
  width: 420px;
  overflow: hidden;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 32px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  max-height: 100%;
}

.quote-icon {
  font-size: 48px;
  width: 31px;
  height: 31px;
  color: #2e3b8e;
  margin-bottom: 16px;
  line-height: 1;
}

.testimonial-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 16px 0;
  line-height: 1.4;
  font-family: "Urbanist", sans-serif;
}

.testimonial-text {
  font-size: 14px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e5e7eb;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.author-title {
  font-size: 12px;
  color: #999;
  margin: 0;
}

@media (max-width: 1024px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-title {
    font-size: 24px;
  }

  .testimonial .testimonial-card {
    background-color: #f7f8f9;
    min-width: 280px;
    width: 280px;
  }

  .testimonial-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 20px;
  }

  .testimonials-carousel-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .testimonials-carousel {
    gap: 40px;
    padding: 0 20px;
  }

  .testimonials-header {
    flex-direction: column;
    margin-bottom: 40px;
    align-items: center;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .testimonials-subtitle {
    font-size: 14px;
  }

  .testimonial-card {
    min-width: 280px;
    width: 280px;
    height: 407px;
    padding: 20px;
    /* gap: 40px; */
    border-radius: 24px;
    border-width: 1.5px;
    opacity: 1;
  }

  .quote-icon {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 12px;
  }

  .testimonial-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Complete Piping Solutions Portfolio Section */
.products-section {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/public/hero_bg.png");
  background-color: #ffffff;
  padding: 80px 20px;

  border-bottom: 1px solid #e5e7eb;
  font-family: "Urbanist", sans-serif;
}

.products-container {
  max-width: 1240px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a202c;
  line-height: 1.2;
  font-family: "Urbanist", sans-serif;
}

.products-subtitle {
  color: #717171;
  line-height: 1.6;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.product-card {
  max-width: 397px;
  max-height: 486px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: visible;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 32px 24px 24px 24px;
}

.product-image {
  width: calc(100% + 48px);
  height: 240px;
  overflow: hidden;
  padding: 20px;
  border-radius: 12px;
  margin: 24px -24px 0 -24px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.product-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 12px;
  font-family: "Urbanist", sans-serif;
  line-height: 1.3;
}

.product-description {
  font-size: 14px;
  color: #717171;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.process-step-badge {
  display: none;
}
.product-btn {
  background: #2b39900d;
  border: 1px solid #2b39903d;
  height: 44px;
  color: #2e3b8e;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  width: 349px;
}

@media (max-width: 768px) {
  .products-grid {

    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-btn {
    background: #2b39900d;
    border: 1px solid #2b39903d;
    height: 40px;
    width: 280px;
    color: #2e3b8e;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
  }

  .product-card {
    width: 328px;

    height: 436px;

    border-width: 1.25px;
    border-style: solid;
    border-color: #e5e7eb;
    border-radius: 20px;
    opacity: 1;
    box-sizing: border-box;
  }
  .product-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 12px;
  font-family: "Urbanist", sans-serif;
  line-height: 1.3;
}

  .product-image {
    width: 100%;
    margin: 16px 0 0 0;
    padding: 12px;
    height: 280px;
  }
}

/* Expert CTA Section */
.expert-cta {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  width: 1240px;
  height: 107px;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: 24px;
  font-weight: 400;
  color: #1a202c;
  margin-bottom: 12px;
  font-family: "Urbanist", sans-serif;
}

.cta-highlight {
  color: #2e3b8e;
}

.cta-description {
  font-size: 16px;
  color: #717171;
  margin: 0;
}

.cta-btn {
  background: #2e3b8e;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


/* Responsive */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .products-title {
    font-size: 32px;
  }

  .expert-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* Tablet-only layout for products grid (matches single-column mockup) */
@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .product-btn {
    background: #2b39900d;
    border: 1px solid #2b39903d;
    height: 40px;
    width: 100%;
    color: #2e3b8e;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
  }
 

  .product-image {
    height: 240px;
  }
}

/* Tablet-only tuning for expert CTA (keeps desktop/mobile intact) */
@media (min-width: 769px) and (max-width: 1024px) {
  .expert-cta {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 28px 32px;
    border-radius: 18px;
    box-sizing: border-box;
    gap: 24px;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta-description {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 60px 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* iPad (768px) widen product card */
  @media (min-width: 760px) and (max-width: 780px) {
    .product-card {
      width: 20%;
      margin: 0 auto;
    }

    .product-image {
      width: 100%;
      margin: 16px 0 0 0;
    }
  }

  .products-title {
    font-size: 28px;
    font-weight: 600;
  }

  .products-subtitle {
    font-size: 14px;
  }

  .product-image {
    height: 200px;
    width: 110%;
    margin: 16px -12px 0 -12px;
  }



  .product-title {
    font-size: 18px;
  }

  .product-description {
    font-size: 13px;
   
  }

  .expert-cta {
    width: 328px;
    min-height: auto;
    height: auto;
    padding: 20px;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .cta-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
  }

  .cta-description {
    font-size: 16px;
    color: #4d4d4d;
    line-height: 1.5;
    margin: 10px;
  }



  .cta-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    height: 44px;
   
  }
}

/* Resources & Downloads Section */
.resources-section {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/public/hero_bg.png");
  background-color: #ffffff;
  padding: 80px 20px;
  border-top: 1px solid #e5e7eb;
  font-family: "Urbanist", sans-serif;
}

.resources-container {
  max-width: 1240px;
  margin: 0 auto;
}

.resources-header {
  text-align: center;
  margin-bottom: 60px;
}

.resources-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a202c;
  line-height: 1.2;
  font-family: "Urbanist", sans-serif;
}

.resources-subtitle {
  color: #717171;
  line-height: 1.6;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.resources-list {
  background: white;
  border: 1px solid #e5e7eb;
  height: 144px;
  width: 1240px;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.resource-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  flex: 1;
  gap: 20px;
}

.resource-item:last-child {
  border-bottom: none;
}

.resource-name {
  font-size: 16px;
  font-weight: 400;
  color: #0d0d0d;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.download-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2b3990;
  text-decoration: none;
  letter-spacing: normal;
  width: 144px;
  font-weight: 300;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.download-link:hover {
  color: #1f2a63;
  transform: translateY(-2px);
}

.download-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

/* Tablet adjustments for resources list */
@media (min-width: 769px) and (max-width: 1024px) {
  .resources-container {
    max-width: 100%;
    padding: 0 24px;
  }

  .resources-list {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 24px;
    gap: 0;
  }

  .resource-item {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .resource-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .resources-section {
    padding: 60px 16px 80px;
  }

  .resources-container {
    max-width: 360px;
    margin: 0 auto;
  }

  .resources-header {
    margin-bottom: 32px;
  }

  .resources-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .resources-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 12px;
  }

  .resources-list {
    width: 100%;
    max-width: 360px;
    padding: 24px;
    border-radius: 12px;
    height: auto;
    gap: 0;
  }

  .resource-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .resource-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
  }

  .resource-item:first-child {
    padding-top: 0;
  }

  .download-link {
    align-self: flex-start;
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
  }

  .resource-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* Final CTA Section with Contact Form */
.cta-final-section {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url("/public/hero_bg.png");
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 80px 20px;
  font-family: "Urbanist", sans-serif;
}

.cta-final-container {
  max-width: 1240px;
  min-height: 472px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;

  gap: 60px;
  align-items: center;
  background: #2b3990;
  border-radius: 32px;
  padding: 60px;
}

.cta-final-content {
  color: #f7f8f9;
}

.cta-final-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  font-family: "Urbanist", sans-serif;
}

.cta-final-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
}

.contact-info {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
}

.contact-info a {
  color: white;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.7;
}

/* Contact Form Styling */
.cta-final-form-container {
  background: #f7f8f9;
  width: 420px;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Tablet-only widen form container */
@media (min-width: 769px) and (max-width: 1024px) {
  .cta-final-container {
    max-width: 100%;
    padding: 40px 32px;
    gap: 32px;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .cta-final-form-container {
    width: 100%;
    max-width: 100%;
    padding: 36px 28px;
  }
}

.form-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 24px;
  font-family: "Urbanist", sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-input::placeholder {
  color: #b0b0b0;
}

.form-input:focus {
  outline: none;
  border-color: #2e3b8e;
  box-shadow: 0 0 0 3px rgba(46, 59, 142, 0.1);
  background: white;
}

.phone-input-group {
  display: flex;
  gap: 12px;
}

.country-code {
  width: 100px;
  padding: 14px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: white;
  cursor: pointer;
}

.country-code:focus {
  outline: none;
  border-color: #2e3b8e;
  box-shadow: 0 0 0 3px rgba(46, 59, 142, 0.1);
}

.phone-input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.phone-input::placeholder {
  color: #b0b0b0;
}

.phone-input:focus {
  outline: none;
  border-color: #2e3b8e;
  box-shadow: 0 0 0 3px rgba(46, 59, 142, 0.1);
  background: white;
}

.submit-btn {
  background: #262a2e;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  font-family: "Inter", sans-serif;
}

.submit-btn:hover {
  background: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .cta-final-section {
    padding: 60px 20px;
  }

  .cta-final-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 40px;
    border-radius: 24px;
  }

  .cta-final-title {
    font-size: 36px;
  }

  .cta-final-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .cta-final-section {
    padding: 32px 16px 48px;
  }

  .cta-final-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px;
    border-radius: 24px;
    max-width: 360px;
    margin: 0 auto;
  }

  .cta-final-title {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .cta-final-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .contact-info {
    font-size: 16px;
    line-height: 1.7;
    padding-top: 20px;
  }

  .cta-final-form-container {
    padding: 28px 20px;
    border-radius: 20px;
    width: 100%;
    height: 336px;
    max-width: 300px;
    margin: 0 auto;
  }

  .form-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .contact-form {
    gap: 12px;
  }

  .form-input,
  .phone-input,
  .country-code {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
    width: 100%;
    height: 40px;
  }

  .submit-btn {
    height: 44px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
  }

  .phone-input-group {
    gap: 0px;
  
  }

  .country-code {
    width: 80px;
  }

  .submit-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Footer Section */
.footer {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("/public/hero_bg.png");
  background-color: #ffffff;

  border-top: 1px solid #e5e7eb;
  font-family: "Inter", sans-serif;
}

.footer-top {
  padding: 60px 20px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-header {
  background: white;
  border: 1px solid #cfd1d4;
  border-radius: 24px;
  padding: 40px;
  height: 122px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  text-align: right;
  flex: 1;
}

.footer-tagline p {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.4;
}

.tagline-highlight {
  color: #2e3b8e;
  font-weight: 600;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Urbanist", sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #717171;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2e3b8e;
}

/* Contact Column */
.contact-column .footer-links {
  display: none;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #717171;
  line-height: 1.5;
}

.contact-item:last-of-type:not(.social-links) {
  margin-bottom: 24px;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item a {
  color: #2e3b8e;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-item a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  margin-top: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e3b8e;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Footer Bottom */
.footer-bottom {
  background: #f8f9fa;
  border-top: 1px solid #e5e7eb;
  height: 40px;
  padding: 24px 20px;
}

.footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.footer-copyright p {
  margin: 0;
}

.footer-links-bottom {
  display: flex;
  gap: 32px;
}

.footer-links-bottom a {
  font-size: 12px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: #2e3b8e;
}

/* Specs Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 20px;
}

.modal-overlay.visible {
  display: flex;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.modal-dialog--specs {
  max-width: 560px;
}

.modal-dialog--quote {
  max-width: 640px;
}

.modal-close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #f1f5f9;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
}



.modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  text-align: left;
}

.modal-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

/* Desktop layout for download brochure (specs) modal */
@media (min-width: 601px) {
  .modal-dialog--specs {
    width: 550px;
    max-width: 550px;
    height: 292px;
  }

  .modal-dialog--specs .modal-form {
    flex: 0 0 calc(292px - 56px);
    max-height: calc(292px - 56px);
  }

  .modal-dialog--specs .modal-header {
    height: 56px;
    padding: 14px 24px;
  }

  .modal-dialog--specs .modal-body {
    height: 180px;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid #e5e7eb;
  }

  .modal-dialog--specs .modal-footer {
    height: 56px;
    padding: 11px 16px;
    gap: 10px;
    border-top: 1px solid #e5e7eb;
  }

  /* Desktop layout for quote modal */
  .modal-dialog--quote {
    width: 550px;
    max-width: 550px;
    height: 348px;
  }

  .modal-dialog--quote .modal-form {
    flex: 0 0 calc(348px - 56px);
    max-height: calc(348px - 56px);
  }

  .modal-dialog--quote .modal-header {
    height: 56px;
    padding: 14px 24px;
  }

  .modal-dialog--quote .modal-body {
    height: 236px;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid #e5e7eb;
  }

  .modal-dialog--quote .modal-footer {
    height: 56px;
    padding: 11px 16px;
    gap: 10px;
    border-top: 1px solid #e5e7eb;
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
    padding: 32px 48px;
    gap: 40px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
}

.modal-body {
  flex: 1;
  .footer-logo {
    flex-shrink: 0;
  }

  .footer-tagline {
    text-align: left;
    flex: 1;
  }

  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #ffffff;
}

.modal-label {
  font-size: 12px;
  color: #4b5563;
  font-weight: 600;
}

.modal-form input {
  width: 100%;
  max-width: 100%;
  height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.modal-phone-group {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 0;
  height: 40px;
}

.modal-country-code {
  width: 110px;
  border: 1px solid #e5e7eb;
  border-radius: 8px 0 0 8px;
  padding: 10px 12px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  background: #fff;
}

.modal-phone-input {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.modal-footer {
  height: 56px;
  padding: 11px 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #e5e7eb;
  background: #F9FAFB;
}

.modal-submit {
  height: 34px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #e5e7eb, #e5e7eb);
  color: #9ca3af;
  font-size: 14px;
  font-weight: 5  00;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 6px 12px;
  width: 156px;
}

.modal-dialog--quote .modal-submit {
  background: #2B3990;
  color: #ffffff;
  font-weight: 600;
}


.modal-submit:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 600px) {
  .modal-dialog {
    padding: 0;
    max-width: 96vw;
    max-height: 92vh;
    border-radius: 10px;
  }

  .modal-dialog--specs {
    width: 100%;
    height: auto;
    max-width: 96vw;
    max-height: 92vh;
  }

  .modal-dialog--specs .modal-form {
    flex: 1;
    max-height: none;
  }

  .modal-dialog--specs .modal-header,
  .modal-dialog--specs .modal-body,
  .modal-dialog--specs .modal-footer {
    height: auto;
  }

  .modal-dialog--quote {
    width: 100%;
    height: auto;
    max-width: 96vw;
    max-height: 92vh;
  }

  .modal-dialog--quote .modal-form {
    flex: 1;
    max-height: none;
  }

  .modal-dialog--quote .modal-header,
  .modal-dialog--quote .modal-body,
  .modal-dialog--quote .modal-footer {
    height: auto;
  }

  .modal-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .modal-title {
    font-size: 16px;
  }

  .modal-body {
    overflow-y: auto;
    padding: 16px;
    gap: 12px;
  }

  .modal-footer {
    padding: 12px 16px;
    justify-content: center;
    gap: 8px;
  }

  .modal-submit {
    width: 100%;
    max-width: none;
    height: 44px;
    font-size: 15px;
  }
}

/* Manufacturing Sticky Bar */
.manufacturing-sticky-bar {
  position: fixed;
  top: 77px;
  left: 0;
  right: 0;
  z-index: 900;

  display: flex;  
  align-items: center;
  justify-content: space-between;
  padding: 12px 100px;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-140%);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  gap: 16px;
}

.manufacturing-sticky-bar.visible {
  transform: translateY(0);
  opacity: 1;
}

.msb-left {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 478px;
  flex: 1;
  min-width: 0;
}

.msb-thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #e5e7eb;
  border: 1px solid #d1d5db;
  flex-shrink: 0;
}

.msb-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.msb-title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  line-height: 1.4;
}

.msb-price {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.msb-btn {
  background: #2e3b8e;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.msb-btn:hover {
  background: #223075;
  box-shadow: 0 10px 20px rgba(46, 59, 142, 0.2);
}

@media (max-width: 900px) {
  .manufacturing-sticky-bar {
    top: 70px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 12px;
  }

  .msb-left {
    width: 100%;
  }

  .msb-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .footer-header {
    flex-direction: column;
    text-align: center;
  
    max-width: 328px;
    height: 156px;
    gap: 20px;
    
    margin: 0 auto;
  }

  .footer-tagline {
    text-align: center;

  }

  .social-links {
  display: flex;
  border-top: 1px solid #e5e7eb;
  margin-top: 16px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Tablet-only footer header fit */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-header {
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 32px 40px;
    gap: 240px;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 24px;
    align-items: center;
    text-align: left;
  }

  .footer-tagline {
    text-align: left;
  }

  .footer-tagline p {
    font-size: 24px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 40px 20px;
    
  }

  .footer-header {
    padding: 24px 20px;
    margin-bottom: 40px;
    border-radius: 16px;
  }

  .footer-tagline p {
    font-size: 16px;
    text-align: center;
    align-items: center;
    
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-column-title {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .contact-item {
    font-size: 13px;
    gap: 10px;
    margin-bottom: 12px;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer-links-bottom {
    flex-direction: flex;
    gap: 12px;
    text-align: center;
    align-items: center;
  }

  .footer-links-bottom a {
    font-size: 12px;
    font-weight: 400;
  }

  .footer-copyright p {
    font-size: 12px;
  }
}
