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

:root {
  --primary-gradient: linear-gradient(135deg, #952197 0%, #6220f1 100%);
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --dark-bg: #0a0a0a;
  --light-bg: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
}

/* === Global + Scrollbar === */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  margin-top: 70px;
  padding: 138px 60px 80px;
  background: var(--primary-gradient);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Category Navigation Buttons */
.category-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #7a147c 0%, #4510b8 100%);
  transition: width 0.4s ease;
  z-index: -1;
}

.category-btn:hover::before {
  width: 100%;
}

.category-btn:hover {
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-btn.active {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(149, 33, 151, 0.4);
}

.btn-icon {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 100px 60px;
  position: relative;
}

.section-dark {
  background: var(--dark-bg);
  color: var(--text-light);
}

.section-light {
  background: #fafbfc;
  color: var(--text-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  /* font-family: "Poppins", sans-serif; */
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.section-dark .section-title {
  background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: #9ca3af;
}

/* Single Column Layout */
.single-product {
  max-width: 900px;
  margin: 0 auto 40px auto;
  background: white;
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.section-dark .single-product {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.single-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-gradient);
}

.single-product h3 {
  /* font-family: "Poppins", sans-serif; */
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-dark .single-product h3 {
  color: var(--text-light);
}

.single-product p,
.product-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-dark .single-product p,
.section-dark .product-description {
  color: #9ca3af;
}

.product-description {
  list-style-type: disc; /* or none for custom bullets */
  padding-left: 20px;
}
.product-description li {
  margin-bottom: 10px;
}

/* Software Menu Styles */
.software-menu {
  animation: fadeIn 0.5s ease;
}

.menu-header {
  text-align: center;
  margin-bottom: 50px;
}

.menu-header h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.menu-tagline {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.feature-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border: 2px solid rgba(102, 126, 234, 0.15);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25);
  border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Feature Details */
.feature-details {
  animation: fadeIn 0.5s ease;
}

.feature-content-wrapper {
  max-width: 100%;
}

/* Feature Header Section - Text Left, Image Right */
.feature-header-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.feature-header-text {
  flex: 1;
  min-width: 0;
}

.feature-header-text h3 {
  /* font-family: "Poppins", sans-serif; */
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-header-text .product-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

.feature-header-image {
  flex: 0 0 380px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border: 2px solid rgba(102, 126, 234, 0.15);
}

.feature-image-compact {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-placeholder-compact {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.feature-placeholder-compact svg {
  width: 70px;
  height: 70px;
  color: var(--primary-color);
  opacity: 0.6;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.back-button:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: white;
  transform: translateX(-5px);
}

.back-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.back-button:hover svg {
  transform: translateX(-3px);
}

/* Removed old full-width image styles */
.feature-image-container {
  display: none;
}

.feature-image {
  display: none;
}

.feature-placeholder-image {
  display: none;
}

/* Feature Highlights Section */
.feature-highlights {
  margin-top: 35px;
  padding: 35px;
  /* background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%); */
  /* border: 2px solid rgba(102, 126, 234, 0.1); */
  /* border-left: 5px solid var(--primary-color); */
  border-radius: 16px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
}

.feature-highlights h4 {
  /* font-family: "Poppins", sans-serif; */
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-highlights h4::before {
  content: "✨";
  font-size: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.feature-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  padding-left: 40px;
  position: relative;
  padding: 18px 18px 18px 50px;
  background: linear-gradient(135deg, #faf7f7 0%, #f8f9ff 100%);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
  border-color: var(--secondary-color);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  /* width: 26px;
  height: 26px; */
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.feature-list li strong {
  color: var(--text-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

/* Production Line Management section list boxes design */
.feature-list-plm {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.feature-list-plm li {
  font-size: 16px;
  line-height: 1.8;
  color: rgb(150, 148, 148);
  padding-left: 40px;
  position: relative;
  padding: 18px 18px 18px 50px;
  /* background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%); */
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.9) 0%,
    rgba(20, 20, 20, 0.9) 100%
  );
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-list-plm li:hover {
  transform: translateX(5px);
  border-color: var(--secondary-color);
  /* box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15); */
}

.feature-list-plm li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  /* width: 26px;
  height: 26px; */
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.feature-list-plm li strong {
  color: var(--text-light);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

/* Production Line Management section list boxes design */
.feature-list-plm {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.feature-list-plm li {
  font-size: 16px;
  line-height: 1.8;
  color: rgb(150, 148, 148);
  padding: 18px 18px 18px 65px;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.9) 0%,
    rgba(20, 20, 20, 0.9) 100%
  );
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}

.feature-list-plm li:hover {
  transform: translateX(5px);
  border-color: var(--secondary-color);
}

.feature-icon-plm {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: var(--primary-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.feature-icon-plm svg {
  width: 22px;
  height: 22px;
  color: white;
  stroke: white;
}

.feature-list-plm li strong {
  color: var(--text-light);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

/* Inventory Management section list boxes design */
.feature-list-inventory {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.feature-list-inventory li {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  padding: 18px 18px 18px 65px;
  background: linear-gradient(135deg, #faf7f7 0%, #f8f9ff 100%);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}

.feature-list-inventory li:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
  border-color: var(--secondary-color);
}

.feature-icon-inventory {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: var(--primary-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.feature-icon-inventory svg {
  width: 22px;
  height: 22px;
  color: white;
  stroke: white;
}

.feature-list-inventory li strong {
  color: var(--text-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

/* Feature Benefits Section */
.feature-benefits {
  margin-top: 35px;
  padding: 35px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3f2 100%);
  border: 2px solid rgba(251, 146, 60, 0.15);
  border-left: 5px solid #f97316;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
}

.feature-benefits h4 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-benefits h4::before {
  content: "🎯";
  font-size: 28px;
}

.feature-benefits p {
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}

/* Hardware Section Styles */
.hardware-section {
  margin-top: 40px;
  padding: 35px;
  background: linear-gradient(135deg, #fef3f2 0%, #fff7ed 100%);
  border: 2px solid rgba(251, 146, 60, 0.2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.hardware-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.hardware-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.hardware-badge svg {
  width: 18px;
  height: 18px;
  color: white;
}

.hardware-badge span {
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hardware-title {
  /* font-family: "Poppins", sans-serif; */
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hardware-description {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 25px;
}

/* Know More Button */
.know-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.know-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  transition: width 0.4s ease;
  z-index: 0;
}

/* .know-more-btn:hover::before {
  width: 100%;
} */

.know-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.know-more-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.know-more-btn:hover svg {
  transform: translateX(5px);
}

.know-more-btn span {
  position: relative;
  z-index: 1;
}

/* Mobile App Section */
.mobile-app-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
  animation: fadeIn 0.5s ease;
}

.mobile-app-content {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-radius: 16px;
  padding: 30px;
}

.mobile-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.mobile-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.mobile-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.mobile-text strong {
  color: #0ea5e9;
  font-weight: 600;
}

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

/* Cross-Link Cards Section */
.cross-links-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
}

.cross-links-header {
  text-align: center;
  margin-bottom: 35px;
}

.cross-links-header h4 {
  /* font-family: "Poppins", sans-serif; */
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cross-links-header p {
  font-size: 15px;
  color: var(--text-muted);
}

.cross-link-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  max-width: 600px;
  margin: 0 auto;
}

.cross-link-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border: 2px solid rgba(102, 126, 234, 0.15);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cross-link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cross-link-card:hover::before {
  transform: scaleX(1);
}

.cross-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.cross-link-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.card-title {
  /* font-family: "Poppins", sans-serif; */
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.card-link:hover {
  color: var(--secondary-color);
  gap: 12px;
}

.card-link:hover svg {
  transform: translateX(4px);
}

/* Accent Decorations */
.accent-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.accent-circle-1 {
  top: -200px;
  right: -200px;
}

.accent-circle-2 {
  bottom: -200px;
  left: -200px;
}

/* Protocol Tags */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.protocol-tag {
  padding: 8px 18px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.section-dark .protocol-tag {
  background: rgba(165, 180, 252, 0.1);
  border-color: rgba(165, 180, 252, 0.3);
  color: #a5b4fc;
}
.protocol-tag:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}

/* Vision Layout for Two-Column Structure */
.vision-layout {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  align-items: flex-start;
}

.vision-left,
.vision-right {
  flex: 1;
}

.vision-left h4,
.vision-right h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.section-dark .vision-left h4,
.section-dark .vision-right h4 {
  color: var(--text-light);
}

/* Applications List Styling */
.applications-list {
  list-style-type: disc;
  padding-left: 50px;
  margin: 0;
}

.applications-list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.section-dark .applications-list li {
  color: #9ca3af;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 768px) {
  .vision-layout {
    flex-direction: column;
    gap: 20px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    padding: 16px 40px;
  }

  .section {
    padding: 60px 24px;
  }

  .hero {
    padding: 80px 24px 50px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 17px;
  }

  .category-buttons {
    gap: 10px;
  }

  .category-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .single-product {
    padding: 40px 30px;
  }

  .menu-header h3 {
    font-size: 26px;
  }

  .menu-tagline {
    font-size: 15px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .mobile-app-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .mobile-text h4 {
    font-size: 20px;
  }

  .mobile-text p {
    font-size: 15px;
  }

  .hardware-section {
    padding: 30px 25px;
  }

  .hardware-title {
    font-size: 20px;
  }

  .hardware-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 24px;
  }

  .nav-center {
    display: none;
  }

  .section {
    padding: 60px 24px;
  }

  .hero {
    padding: 80px 24px 50px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 17px;
  }

  .category-buttons {
    gap: 10px;
  }

  .category-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn-icon {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .single-product {
    padding: 40px 30px;
  }

  .hardware-section {
    padding: 25px 20px;
  }

  .know-more-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .category-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .category-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .single-product {
    padding: 30px 20px;
  }

  .protocol-tags {
    gap: 8px;
  }

  .protocol-tag {
    font-size: 12px;
    padding: 6px 14px;
  }

  .menu-header h3 {
    font-size: 22px;
  }

  .feature-card h4 {
    font-size: 18px;
  }

  .back-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hardware-section {
    padding: 20px 16px;
  }

  .hardware-title {
    font-size: 18px;
  }

  .hardware-description {
    font-size: 14px;
  }

  .know-more-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}
