:root {
  /* Apple Design System Colors */
  --apple-blue: #007AFF;
  --apple-blue-hover: #0051D5;
  --accent: #007AFF;
  --accent-light: #34AAFF;
  --accent-rgb: 0, 122, 255;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --text-quaternary: #a1a1a6;
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f7;
  --bg-tertiary: #fafafa;
  --border: rgba(0, 0, 0, 0.1);
  --border-light: rgba(0, 0, 0, 0.06);
  --border-subtle: rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.47059;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 17px;
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.btn-primary {
  background: var(--apple-blue);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
}
.btn-primary:hover {
  background: var(--apple-blue-hover);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--stroke);
  color: var(--text);
}
.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke);
  font-size: 12px;
  color: var(--muted);
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  height: 80px;
  min-height: 44px;
  color: var(--text-primary);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
  position: relative;
  z-index: 10;
  text-decoration: none;
  color: inherit;
}
.logo-wrap img {
  height: 80px;
  width: auto;
}
.logo-tagline {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  align-items: center;
}
.nav-links > a {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav-links > a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
}
.nav-links > a.active {
  color: #0066cc;
  background: rgba(0, 102, 204, 0.08);
}
.nav-links > a:active {
  transform: scale(0.97);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown-trigger:hover {
  background: rgba(0, 0, 0, 0.05);
}
.nav-dropdown-trigger:active {
  transform: scale(0.97);
}
.nav-dropdown-trigger.active {
  background: #0066cc;
  color: #ffffff;
}
.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}
.nav-dropdown-trigger.active .dropdown-arrow {
  transform: rotate(180deg);
}
/* Mega Menu - Full Width Corporate Style */
.mega-menu {
  position: fixed;
  top: 81px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1000;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}
.mega-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.mega-menu-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}
.mega-menu-content {
  padding: 32px 0 40px;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: #ffffff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.mega-menu-product {
  position: relative;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(12px);
  animation: menuItemAppear 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.mega-menu-product:nth-child(1) { animation-delay: 0.02s; }
.mega-menu-product:nth-child(2) { animation-delay: 0.04s; }
.mega-menu-product:nth-child(3) { animation-delay: 0.06s; }
.mega-menu-product:nth-child(4) { animation-delay: 0.08s; }
.mega-menu-product:nth-child(5) { animation-delay: 0.10s; }
.mega-menu-product:nth-child(6) { animation-delay: 0.12s; }
@keyframes menuItemAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mega-menu-product::before {
  display: none;
}
.mega-menu-product::after {
  display: none;
}
.mega-menu-product:hover {
  background: #f0f7ff;
}
.mega-menu-product-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  padding: 20px;
  position: relative;
  border-radius: 12px;
}
.mega-menu-product-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0066cc 0%, #0080ff 100%);
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px -2px rgba(0, 102, 204, 0.3);
}
.mega-menu-product:hover .mega-menu-product-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 16px -2px rgba(0, 102, 204, 0.4);
}
.mega-menu-product-content {
  flex: 1;
  padding-top: 0;
}
.mega-menu-product-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.mega-menu-product:hover .mega-menu-product-title {
  color: #0066cc;
}
.mega-menu-product-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega-menu-product:hover .mega-menu-product-desc {
  color: #4b5563;
}
@media (max-width: 1024px) {
  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-menu-product-link {
    padding: 16px;
  }
  .mega-menu-product-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .mega-menu {
    top: 70px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .mega-menu-content {
    padding: 20px 0;
  }
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
  }
  .mega-menu-product {
    border-radius: 10px;
  }
  .mega-menu-product-link {
    padding: 14px;
    border-radius: 10px;
  }
  .mega-menu-product-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
    border-radius: 8px;
  }
  .mega-menu-product-title {
    font-size: 13px;
  }
  .mega-menu-product-title::after {
    display: none;
  }
  .mega-menu-product-desc {
    font-size: 11px;
    -webkit-line-clamp: 1;
  }
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 22px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.mobile-nav-links a {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav-links a.active {
  color: #0066cc;
  font-weight: 500;
}
.mobile-nav-item-with-sub {
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav-sub-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color 0.2s ease;
}
.mobile-nav-sub-trigger:hover,
.mobile-nav-sub-trigger.mobile-nav-sub-trigger-active {
  color: var(--apple-blue);
}
.mobile-nav-sub-chevron {
  font-size: 12px;
  color: var(--text-secondary);
  transition: transform 0.25s ease;
}
.mobile-nav-item-with-sub.is-open .mobile-nav-sub-chevron {
  transform: rotate(180deg);
}
.mobile-nav-sub {
  list-style: none;
  margin: 0 0 8px 0;
  padding: 0 0 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-nav-item-with-sub.is-open .mobile-nav-sub {
  max-height: 400px;
}
.mobile-nav-sub li {
  margin: 0;
}
.mobile-nav-sub a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: none;
}
.mobile-nav-sub a:hover {
  color: var(--apple-blue);
}
.mobile-lang-select {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-lang-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-lang-trigger:hover {
  color: var(--apple-blue);
}
.mobile-lang-trigger i:first-child {
  color: var(--apple-blue);
  font-size: 18px;
}
.mobile-lang-chevron {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-secondary);
  transition: transform 0.25s ease;
}
.mobile-lang-select.is-open .mobile-lang-chevron {
  transform: rotate(180deg);
}
.mobile-lang-dropdown {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}
.mobile-lang-select.is-open .mobile-lang-dropdown {
  max-height: 120px;
  opacity: 1;
}
.mobile-lang-dropdown .lang-select {
  width: 100%;
  padding: 12px 16px;
  margin-top: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  font-size: 15px;
}
.mobile-lang-select .select-wrap {
  width: 100%;
}
.mobile-lang-select .select-wrap::after {
  right: 16px;
}
.lang-select {
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--text-primary);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding: 8px 32px 8px 12px;
  font-weight: 500;
  outline: none;
  min-width: 100px;
}
.lang-select option {
  padding: 12px;
  font-size: 14px;
}
.select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.select-wrap:hover {
  background: #e5e7eb;
}
.select-wrap:focus-within {
  background: #ffffff;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.select-wrap:hover::after {
  border-color: #374151;
}
.select-wrap:focus-within::after {
  border-color: #0066cc;
}
.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.2);
}
.hero {
  padding: 20px 0 0;
  background: #000000;
  background-image: url(https://swiperjs.com/images/home/header-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1111px;
  color: #ffffff;
  overflow: hidden;
  height: calc(100vh - 81px);
  max-height: calc(100vh - 81px);
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 122, 255, 0.12) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.01) 2px,
    rgba(255, 255, 255, 0.01) 4px
  );
  opacity: 0.3;
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(138, 43, 226, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 100%, rgba(0, 122, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(138, 43, 226, 0.03) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
  animation: backgroundPulse 8s ease-in-out infinite;
}
@keyframes backgroundPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  z-index: 1;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-light-rays {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 49.8%, rgba(255, 255, 255, 0.015) 49.9%, rgba(255, 255, 255, 0.015) 50.1%, transparent 50.2%),
    linear-gradient(-45deg, transparent 49.8%, rgba(255, 255, 255, 0.015) 49.9%, rgba(255, 255, 255, 0.015) 50.1%, transparent 50.2%);
  background-size: 200px 200px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  animation: lightRayMove 30s linear infinite;
}
@keyframes lightRayMove {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0.2;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    transform: translateX(200px) translateY(200px);
    opacity: 0.2;
  }
}
.hero-container {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}
.hero-ornament {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-ornament-1 {
  top: 15%;
  left: 8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(138, 43, 226, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrnament 12s ease-in-out infinite;
}
.hero-ornament-2 {
  bottom: 15%;
  right: 8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 122, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrnament 15s ease-in-out infinite reverse;
}
@keyframes floatOrnament {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px) translateX(15px) scale(1.1);
    opacity: 0.7;
  }
}
.hero-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, transparent 45%, rgba(255, 255, 255, 0.01) 45.5%, rgba(255, 255, 255, 0.01) 46%, transparent 46.5%);
  animation: rotateShine 40s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes rotateShine {
  0% {
    transform: rotate(0deg);
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.3;
  }
}
.hero-content-wrapper {
  position: relative;
  min-height: auto;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(30px);
  animation: contentSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.hero-content-wrapper::before {
  display: none;
}
.hero-content-wrapper::after {
  display: none;
}
@keyframes sparkle {
  0%, 100% {
    opacity: 0.2;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1.1);
  }
}
@keyframes contentSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content {
  text-align: center;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 800ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}
.hero-content.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  position: relative;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding-top: 2px;
  overflow: visible;
}
.hero-content h1:first-line {
  display: block;
  margin-bottom: 4px;
}
.hero-content.is-active h1 {
  opacity: 1;
  transform: translateY(0);
}
.hero-content.is-active h1::before {
  display: none;
}
.hero-content h1 span {
  display: block;
  margin-top: 6px;
  position: relative;
  font-weight: 600;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}
.hero-content h1 span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  border-radius: 2px;
  opacity: 0.5;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}
.hero-content p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1) 150ms,
              transform 800ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
  position: relative;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-content.is-active p {
  opacity: 1;
  transform: translateY(0);
}
.hero-visual {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  margin-top: 0;
  padding-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: visualSlideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(138, 43, 226, 0.4) 50%, transparent 100%);
  opacity: 0.5;
}
@keyframes visualSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-visual::before,
.hero-visual::after {
  display: none;
}
.hero-geometric {
  display: none;
}
.hero-geometric-2::after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(243, 122, 36, 0.08);
  border-radius: 50%;
  animation: pulseRing 3s ease-in-out infinite 1.5s;
}
.hero-geometric-3 {
  top: 50%;
  left: 15%;
  width: 60px;
  height: 60px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  animation: rotateFast 8s linear infinite;
}
@keyframes rotateReverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateFast {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}
@keyframes rotateSlow {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}
@keyframes pulseRing {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}
.hero-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
  min-height: 0;
  max-height: 100%;
  overflow: visible;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-slider-arrow {
  display: none;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              visibility 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  justify-content: center;
  transform: scale(0.95) translateY(20px);
  align-items: center;
  pointer-events: none;
  filter: blur(8px) brightness(0.7);
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  filter: blur(0) brightness(1);
}
.hero-slide img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hero-slide.is-active img {
  animation: imageReveal 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes imageReveal {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.hero-slider-controls {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  position: relative;
}
.hero-slider-controls::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  opacity: 0.5;
}
.hero-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hero-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.3);
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.3);
}
.hero-dot:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}
.hero-dot.is-active {
  width: 40px;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.hero-dot.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.hero-dot.is-active::before {
  opacity: 1;
}
.industries {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
}
.industries-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}
.industries-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}
.industries-title {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.08349;
  margin: 0 0 20px 0;
  position: relative;
  display: inline-block;
}
.industries-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--apple-blue);
  border-radius: 2px;
}
.industries-description {
  font-size: 19px;
  line-height: 1.4211;
  color: var(--text-secondary);
  margin: 20px 0 0 0;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.industry-card {
  background: var(--bg-primary);
  border-radius: 18px;
  overflow: hidden;
  border: 0.5px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: var(--shadow-sm);
}
.industry-card:nth-child(1) { animation-delay: 0s; }
.industry-card:nth-child(2) { animation-delay: 0.03s; }
.industry-card:nth-child(3) { animation-delay: 0.06s; }
.industry-card:nth-child(4) { animation-delay: 0.09s; }
.industry-card:nth-child(5) { animation-delay: 0.12s; }
.industry-card:nth-child(6) { animation-delay: 0.15s; }
.industry-card:nth-child(7) { animation-delay: 0.18s; }
.industry-card:nth-child(8) { animation-delay: 0.21s; }
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.industry-card:hover::before {
  opacity: 1;
}
.industry-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #000000;
  position: relative;
}
.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card:hover .industry-image img {
  transform: scale(1.1);
}
.industry-content {
  padding: 24px;
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}
.industry-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  line-height: 1.3;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card:hover .industry-title {
  color: var(--apple-blue);
}
.industry-description {
  font-size: 15px;
  line-height: 1.47059;
  color: var(--text-secondary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .industries {
    padding: 80px 0;
  }
  .industries-container {
    padding: 0 20px;
  }
  .industries-header {
    margin-bottom: 50px;
  }
  .industries-title {
    font-size: 40px;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .industries {
    padding: 60px 0;
  }
  .industries-container {
    padding: 0 16px;
  }
  .industries-header {
    margin-bottom: 40px;
  }
  .industries-title {
    font-size: 36px;
  }
  .industries-description {
    font-size: 16px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .industry-image {
    height: 180px;
  }
  .industry-content {
    padding: 20px;
  }
  .industry-title {
    font-size: 18px;
  }
  .industry-description {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* Sticky Feature Section - Apple Style */
.sticky-feature {
  background: #ffffff;
  padding: 0;
  position: relative;
  overflow: visible;
}
.sticky-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}
.sticky-feature-container {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 22px;
}
.sticky-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 45%;
}
.sticky-feature-item {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 60px 0;
  position: relative;
}
.sticky-feature-item::after {
  display: none;
}
.sticky-feature-content {
  max-width: 480px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-feature-item.is-visible .sticky-feature-content {
  opacity: 1;
  transform: translateY(0);
}
.sticky-feature-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e6e73;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.sticky-feature-item.is-visible .sticky-feature-label {
  opacity: 1;
  transform: translateY(0);
}
.sticky-feature-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.sticky-feature-item.is-visible .sticky-feature-title {
  opacity: 1;
  transform: translateY(0);
}
.sticky-feature-desc {
  font-size: 18px;
  line-height: 1.5;
  color: #6e6e73;
  margin: 0 0 28px 0;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.sticky-feature-item.is-visible .sticky-feature-desc {
  opacity: 1;
  transform: translateY(0);
}
.sticky-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 400;
  color: #0066cc;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
              color 0.3s ease;
}
.sticky-feature-item.is-visible .sticky-feature-link {
  opacity: 1;
  transform: translateY(0);
}
.sticky-feature-link i {
  font-size: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-feature-link:hover {
  color: #0077ed;
}
.sticky-feature-link:hover i {
  transform: translateX(5px);
}
.sticky-feature-media {
  display: none;
}
.sticky-feature-gallery {
  width: 55%;
  position: sticky;
  top: 81px;
  height: calc(100vh - 81px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 20px 20px;
}
.sticky-feature-gallery-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1/1;
}
.sticky-feature-gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  filter: blur(8px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}
.sticky-feature-gallery-item.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}
.sticky-feature-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Progress Dots */
.sticky-feature-progress {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.sticky-feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease;
}
.sticky-feature-dot:hover {
  transform: scale(1.2);
  background: rgba(0, 0, 0, 0.15);
}
.sticky-feature-dot .dot-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0066cc;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-feature-dot.is-active .dot-fill {
  transform: scale(1);
}
.sticky-feature-dot.is-active {
  background: #0066cc;
}

/* Progress line connecting dots */
.sticky-feature-progress::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.06);
  border-radius: 1px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .sticky-feature-container {
    flex-direction: column;
    padding: 0 22px;
  }
  .sticky-feature-list {
    width: 100%;
  }
  .sticky-feature-item {
    min-height: auto;
    padding: 60px 0;
    text-align: center;
    align-items: center;
  }
  .sticky-feature-content {
    max-width: 600px;
  }
  .sticky-feature-content,
  .sticky-feature-label,
  .sticky-feature-title,
  .sticky-feature-desc,
  .sticky-feature-link {
    opacity: 1;
    transform: none;
  }
  .sticky-feature-title {
    font-size: clamp(32px, 6vw, 44px);
  }
  .sticky-feature-desc {
    font-size: 17px;
  }
  .sticky-feature-media {
    display: block;
    margin-top: 40px;
    width: 100%;
    max-width: 600px;
  }
  .sticky-feature-media img {
    width: 100%;
    object-fit: contain;
  }
  .sticky-feature-gallery {
    display: none;
  }
}

@media (max-width: 480px) {
  .sticky-feature-container {
    padding: 0 20px;
  }
  .sticky-feature-item {
    padding: 40px 0;
  }
  .sticky-feature-title {
    font-size: 28px;
  }
  .sticky-feature-desc {
    font-size: 15px;
  }
  .sticky-feature-link {
    font-size: 15px;
  }
  .sticky-feature-media img {
    object-fit: contain;
  }
}

.anchor-placeholder {
  min-height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}
.footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 80px 0 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 122, 255, 0.35) 50%, transparent 100%);
  opacity: 0.9;
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0, 122, 255, 0.05) 0%, transparent 55%);
  pointer-events: none;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-column {
  display: flex;
  flex-direction: column;
}
.footer-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 22px 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--apple-blue);
  border-radius: 2px;
  opacity: 0.9;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
}
.footer-links a:hover {
  color: var(--apple-blue);
  transform: translateX(4px);
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-column:last-child .footer-contact-info {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.footer-contact-item i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--apple-blue);
  font-size: 15px;
  background: rgba(0, 122, 255, 0.14);
  border-radius: 10px;
}
.footer-contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.contact-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-value:hover {
  color: var(--apple-blue);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 40px;
  text-align: center;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 56px 0 0 0;
  }
  .footer-container {
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  .footer-column:last-child {
    grid-column: 1;
  }
  .footer-column:last-child .footer-contact-info {
    flex-direction: column;
    padding: 24px;
  }
  .footer-contact-item {
    min-width: 0;
    flex: none;
  }
  .footer-bottom {
    padding: 28px 0 32px;
  }
  .footer-copyright {
    max-width: 100%;
    word-wrap: break-word;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 48px 0 0 0;
  }
  .footer-container {
    padding: 0 16px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-column:last-child {
    grid-column: 1;
  }
  .footer-column:last-child .footer-contact-info {
    flex-direction: column;
    padding: 20px;
  }
  .footer-title {
    font-size: 12px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }
  .footer-title::after {
    width: 24px;
  }
  .footer-contact-item {
    gap: 12px;
    min-width: 0;
  }
  .footer-contact-item > div {
    min-width: 0;
    overflow-wrap: break-word;
  }
  .footer-contact-item i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 12px;
  }
  .contact-label {
    font-size: 10px;
  }
  .contact-value {
    font-size: 13px;
    word-wrap: break-word;
  }
  .footer-links {
    gap: 8px;
  }
  .footer-links a {
    font-size: 14px;
  }
  .footer-bottom {
    padding: 24px 0 28px;
  }
  .footer-copyright {
    font-size: 11px;
    line-height: 1.5;
    max-width: 100%;
    word-wrap: break-word;
  }
}
.product-showcase {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}
.product-showcase.animate-in {
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.product-showcase-container {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.product-showcase-content {
  text-align: center;
  max-width: 900px;
}
.product-showcase-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.08349;
}
.product-showcase-subtitle {
  font-size: clamp(21px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.42857;
}
.product-showcase-description {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--text-secondary);
  line-height: 1.47059;
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.product-showcase-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-white {
  border: 0.5px solid var(--text-primary);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline-white:hover {
  background: var(--text-primary);
  color: #ffffff;
}
.product-showcase-image {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.product-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.about-us {
  background: var(--bg-secondary);
  padding: 100px 0;
  position: relative;
}
.about-us-container {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.about-us-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
.about-us-header.animate-in {
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.about-us-title-wrapper {
  position: relative;
  display: inline-block;
}
.about-us-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.08349;
  position: relative;
}
.about-us-title-underline {
  display: none;
}
.about-us-subtitle {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.41667;
}
.about-us-text-content {
  width: min(800px, 100%);
  margin: 0 auto 60px;
  opacity: 0;
  transform: translateY(30px);
}
.about-us-text-content.animate-in {
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.1s;
}
.about-us-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  align-items: center;
  text-align: center;
}
.about-us-btn {
  margin-top: 8px;
}
/* Vision & Mission Section */
.vision-mission-section {
  width: 100%;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
}
.vision-mission-section.animate-in {
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.15s;
}
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.vision-mission-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.vision-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vision-mission-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.vision-mission-card:hover::before {
  opacity: 1;
}
.vm-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.05));
  border-radius: 50%;
  color: var(--accent);
  font-size: 28px;
  transition: all 0.3s ease;
}
.vision-mission-card:hover .vm-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  transform: scale(1.1);
}
.vm-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.vm-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.about-us-image-wrapper {
  width: 100%;
  margin: 0 0 80px;
  padding: 0;
  opacity: 0;
  transform: translateY(30px);
}
.about-us-image-wrapper.animate-in {
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.15s;
}
.about-us-image-container {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #000000;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.about-us-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.about-us-stats-section {
  width: 100%;
  margin-top: 0;
  opacity: 0;
  transform: translateY(30px);
}
.about-us-stats-section.animate-in {
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}
.about-us-paragraph {
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.47059;
  color: var(--text-primary);
  font-weight: 400;
  text-align: center;
}
.about-us-paragraph:first-child {
  font-size: clamp(19px, 2vw, 21px);
  font-weight: 500;
  color: var(--text-primary);
}
.about-us-paragraph:first-child::before {
  display: none;
}
.about-us-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.about-us-stat {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-primary);
  border: 0.5px solid var(--border-subtle);
  border-top: 3px solid var(--apple-blue);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-us-stat:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0.05) 100%);
  border-radius: 14px;
  margin: 0 auto 16px;
  color: var(--apple-blue);
  font-size: 24px;
  transition: all 0.3s ease;
}
.about-us-stat:hover .stat-icon {
  background: var(--apple-blue);
  color: white;
  transform: scale(1.1);
}
.stat-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.stat-label {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.47059;
}
.products {
  background: linear-gradient(180deg, var(--bg-tertiary) 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: 
    radial-gradient(ellipse at 20% 0%, rgba(0, 122, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(138, 43, 226, 0.03) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.6;
}
.products::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 122, 255, 0.02) 100%);
  pointer-events: none;
}
.products-container {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.products-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
.products-header.animate-in {
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.products-title {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.08349;
  margin: 0 0 20px 0;
  position: relative;
  display: inline-block;
}
.products-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--apple-blue);
  border-radius: 2px;
}
.products-description {
  font-size: 19px;
  line-height: 1.4211;
  color: var(--text-secondary);
  margin: 20px 0 0 0;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.product-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  opacity: 0;
  transform: translateY(40px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.product-card.animate-in {
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.product-card:nth-child(1) { animation-delay: 0s; }
.product-card:nth-child(2) { animation-delay: 0.05s; }
.product-card:nth-child(3) { animation-delay: 0.1s; }
.product-card:nth-child(4) { animation-delay: 0.15s; }
.product-card:nth-child(5) { animation-delay: 0.2s; }
.product-card:nth-child(6) { animation-delay: 0.25s; }
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--apple-blue) 0%, #34AAFF 100%);
  border-radius: 20px 0 0 20px;
  z-index: 2;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
  border-color: rgba(0, 122, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 122, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
}
.product-card:hover::before {
  transform: scaleY(1);
}
.product-image {
  width: 380px;
  max-width: 100%;
  min-height: 300px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.product-card:hover .product-image::before {
  opacity: 1;
}
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.product-image img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  border-radius: 8px;
}
.product-card:hover .product-image img {
  transform: scale(1.06);
}
.product-content {
  padding: 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-primary);
  position: relative;
}
.product-title-link {
  text-decoration: none;
  display: block;
}
.product-title-link:hover .product-title {
  color: var(--apple-blue);
}
.product-title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.product-card:hover .product-title {
  color: var(--apple-blue);
}
a.product-image,
a.product-featured-image,
a.product-automotive-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Featured Product Card - Elektrik Terminalleri */
.product-card-featured {
  flex-direction: column;
}
.product-card-featured .product-featured-header {
  display: flex;
  gap: 32px;
  padding: 32px;
  border-bottom: 1px solid var(--border-light);
}
.product-card-featured .product-featured-image {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.product-card-featured .product-featured-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card-featured:hover .product-featured-image img {
  transform: scale(1.05);
}
.product-card-featured .product-featured-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-card-featured .product-title {
  font-size: 28px;
  margin-bottom: 16px;
}
.product-card-featured .product-description {
  margin-bottom: 0;
  font-size: 16px;
}
.product-subcategories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px;
  background: var(--bg-secondary);
}
.subcategory-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-primary);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}
.subcategory-card i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0.05) 100%);
  border-radius: 10px;
  color: var(--apple-blue);
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.subcategory-card span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.subcategory-card:hover {
  border-color: rgba(0, 122, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.1);
  transform: translateY(-2px);
}
.subcategory-card:hover i {
  background: var(--apple-blue);
  color: white;
}

/* Automotive Product Card - Otomotiv Konnektörleri */
.product-card-automotive {
  flex-direction: column;
}
.product-card-automotive .product-automotive-header {
  display: flex;
  gap: 32px;
  padding: 32px;
  border-bottom: 1px solid var(--border-light);
}
.product-card-automotive .product-automotive-image {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.product-card-automotive .product-automotive-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-card-automotive:hover .product-automotive-image img {
  transform: scale(1.05);
}
.product-card-automotive .product-automotive-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-card-automotive .product-title {
  font-size: 28px;
  margin-bottom: 12px;
}
.product-card-automotive .product-description {
  margin-bottom: 16px;
  font-size: 15px;
}
.product-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(0, 122, 255, 0.04) 100%);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--apple-blue);
  border: 1px solid rgba(0, 122, 255, 0.15);
}
.product-badges .badge i {
  font-size: 11px;
}
.product-series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--bg-secondary);
}
.series-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid var(--border-light);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.series-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--apple-blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}
.series-card:hover {
  border-color: rgba(0, 122, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 122, 255, 0.1);
  transform: translateY(-3px);
}
.series-card:hover::before {
  transform: scaleY(1);
}
.series-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.series-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: var(--apple-blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.series-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
}
.series-card:hover .series-name {
  color: var(--apple-blue);
}
.series-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}
.series-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
  color: var(--apple-blue);
  font-size: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
}
.series-card:hover .series-arrow {
  opacity: 1;
  transform: translateX(0);
}

.product-subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  position: relative;
}
.product-subcategory-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--bg-secondary);
  border-radius: 20px;
  border: 1px solid transparent;
}
.product-subcategory-link:hover {
  background: rgba(0, 122, 255, 0.08);
  color: var(--apple-blue);
  border-color: rgba(0, 122, 255, 0.2);
}
.subcategory-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.subcategory-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.47059;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-subcategory-link:hover .subcategory-name {
  color: var(--apple-blue);
}
.subcategory-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-tertiary);
  line-height: 1.47059;
  padding-left: 16px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-subcategory-link:hover .subcategory-desc {
  color: var(--text-secondary);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .product-image {
    width: 350px;
  }
  .product-content {
    padding: 36px 40px;
  }
}
@media (max-width: 768px) {
  .product-showcase {
    padding: 60px 0;
  }
  .product-showcase-container {
    gap: 40px;
    padding: 0 16px;
  }
  .product-showcase-subtitle {
    margin-bottom: 12px;
  }
  .product-showcase-description {
    margin-bottom: 28px;
  }
  .product-showcase-buttons {
    gap: 12px;
  }
  .product-showcase-buttons .btn {
    flex: 1;
    min-width: 140px;
  }
  .product-image {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .product-showcase {
    padding: 50px 0;
  }
  .product-showcase-container {
    gap: 32px;
    padding: 0 12px;
  }
  .product-showcase-buttons {
    flex-direction: column;
    width: 100%;
  }
  .product-showcase-buttons .btn {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-divider {
    display: none;
  }
  .select-wrap {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .nav {
    padding: 0 16px;
  }
  .mega-menu {
    display: none;
  }
  .nav-actions {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .nav {
    height: 70px;
    padding: 0 16px;
  }
  .logo-wrap {
    flex-shrink: 0;
  }
  .logo-wrap img {
    height: 50px;
    width: auto;
  }
  .logo-tagline {
    font-size: 9px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-actions {
    gap: 12px;
    flex-shrink: 0;
  }
  .select-wrap {
    display: none;
  }
  .mobile-menu-toggle {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .mobile-menu {
    top: 70px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .hero {
    padding-top: 50px;
    background-size: 800px;
  }
  .hero-container {
    padding: 0 16px;
  }
  .hero-content-wrapper {
    min-height: 200px;
    margin-bottom: 20px;
    padding: 20px 0;
  }
  .hero-content h1 {
    font-size: 44px;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .hero-content h1 span {
    margin-top: 4px;
  }
  .hero-content p {
    font-size: 16px;
    max-width: 100%;
    line-height: 1.5;
  }
  .hero-slider {
    min-height: 300px;
  }
  .hero-slider-controls {
    margin-top: 24px;
    padding: 16px;
  }
  .hero-slider-arrow {
    display: none;
  }
  .hero-overlay::before {
    opacity: 0.2;
  }
  .about-us {
    padding: 60px 0;
  }
  .about-us-header {
    margin-bottom: 50px;
  }
  .about-us-text-content {
    margin-bottom: 40px;
  }
  .vision-mission-section {
    margin-bottom: 40px;
  }
  .vision-mission-grid {
    gap: 20px;
  }
  .vision-mission-card {
    padding: 32px 24px;
  }
  .vm-icon {
    width: 64px;
    height: 64px;
  }
  .vm-title {
    font-size: 1.35rem;
  }
  .about-us-image-wrapper {
    margin-bottom: 60px;
  }
  .about-us-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-us-stat {
    padding: 24px 16px;
  }
  .products {
    padding: 60px 0;
  }
  .products-header {
    margin-bottom: 50px;
  }
  .products-title {
    font-size: 40px;
  }
  .products-description {
    font-size: 17px;
  }
  .products-grid {
    gap: 32px;
  }
  .product-card {
    flex-direction: column;
    border-radius: 12px;
  }
  .product-card::before {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
  }
  .product-card:hover::before {
    width: 100%;
    height: 3px;
  }
  .product-image {
    width: 100%;
    min-height: 250px;
    padding: 0;
  }
  .product-content {
    padding: 32px 24px;
  }
  .product-card-featured .product-featured-header {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .product-card-featured .product-featured-image {
    width: 100%;
    height: 180px;
  }
  .product-card-featured .product-title {
    font-size: 24px;
  }
  .product-subcategories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px;
  }
  .subcategory-card {
    padding: 14px 16px;
  }
  .subcategory-card i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .subcategory-card span {
    font-size: 13px;
  }
  .product-card-automotive .product-automotive-header {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .product-card-automotive .product-automotive-image {
    width: 100%;
    height: 180px;
  }
  .product-card-automotive .product-title {
    font-size: 24px;
  }
  .product-series-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .series-card {
    padding: 16px;
  }
  .series-header {
    flex-wrap: wrap;
  }
  .series-name {
    font-size: 14px;
  }
  .series-desc {
    font-size: 12px;
  }
  .product-title {
    font-size: 26px;
  }
  .product-description {
    font-size: 16px;
    padding-left: 0;
  }
  .product-description::before {
    display: none;
  }
  .product-subcategories {
    gap: 4px;
    padding-top: 20px;
    margin-top: 20px;
  }
  .product-subcategory-link {
    font-size: 14px;
    padding: 10px 12px;
  }
  .subcategory-name {
    font-size: 14px;
  }
  .subcategory-desc {
    font-size: 13px;
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .nav {
    min-height: 60px;
    height: auto;
    padding: 8px 12px;
  }
  .logo-wrap img {
    height: 50px;
  }
  .logo-tagline {
    font-size: 8px;
  }
  .mobile-menu {
    top: 60px;
    padding: 20px 16px;
  }
  .hero {
    padding-top: 40px;
    background-size: 600px;
  }
  .hero-container {
    padding: 0 12px;
  }
  .hero-content-wrapper {
    min-height: 160px;
    margin-bottom: 16px;
    padding: 12px 0;
  }
  .hero-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
    line-height: 1.2;
    padding-top: 0;
  }
  .hero-content h1 span {
    margin-top: 4px;
  }
  .hero-content p {
    font-size: 15px;
    line-height: 1.5;
  }
  .hero-slider {
    min-height: 220px;
  }
  .hero-slider-controls {
    margin-top: 16px;
    padding: 12px;
  }
  .hero-overlay::before {
    opacity: 0.15;
  }
  .about-us {
    padding: 50px 0;
  }
  .about-us-header {
    margin-bottom: 40px;
  }
  .about-us-text-content {
    margin-bottom: 32px;
  }
  .vision-mission-section {
    margin-bottom: 32px;
  }
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vision-mission-card {
    padding: 28px 20px;
  }
  .vm-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .vm-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  .vm-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .about-us-image-wrapper {
    margin-bottom: 50px;
  }
  .about-us-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-us-stat {
    padding: 20px 12px;
  }
  .products {
    padding: 50px 0;
  }
  .products-header {
    margin-bottom: 40px;
  }
  .products-title {
    font-size: 36px;
  }
  .products-description {
    font-size: 16px;
  }
  .products-grid {
    gap: 24px;
  }
  .product-card {
    border-radius: 12px;
  }
  .product-card::before {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
  }
  .product-card:hover::before {
    width: 100%;
    height: 3px;
  }
  .product-image {
    min-height: 200px;
    padding: 0;
  }
  .product-content {
    padding: 24px 20px;
  }
  .product-card-featured .product-featured-header {
    padding: 20px;
    gap: 16px;
  }
  .product-card-featured .product-featured-image {
    height: 150px;
  }
  .product-card-featured .product-title {
    font-size: 22px;
  }
  .product-card-featured .product-description {
    font-size: 14px;
  }
  .product-subcategories-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }
  .subcategory-card {
    padding: 12px 14px;
    gap: 10px;
  }
  .subcategory-card i {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 8px;
  }
  .subcategory-card span {
    font-size: 13px;
  }
  .product-card-automotive .product-automotive-header {
    padding: 20px;
    gap: 16px;
  }
  .product-card-automotive .product-automotive-image {
    height: 150px;
  }
  .product-card-automotive .product-title {
    font-size: 22px;
  }
  .product-card-automotive .product-description {
    font-size: 14px;
  }
  .product-badges .badge {
    font-size: 11px;
    padding: 5px 10px;
  }
  .product-series-grid {
    padding: 12px;
    gap: 10px;
  }
  .series-card {
    padding: 14px;
  }
  .series-code {
    font-size: 10px;
    padding: 3px 8px;
  }
  .series-name {
    font-size: 13px;
  }
  .series-desc {
    font-size: 12px;
    line-height: 1.4;
  }
  .series-arrow {
    margin-top: 10px;
    font-size: 12px;
  }
  .product-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .product-description {
    font-size: 15px;
    margin-bottom: 20px;
    padding-left: 0;
  }
  .product-description::before {
    display: none;
  }
  .product-subcategories {
    gap: 3px;
    padding-top: 18px;
    margin-top: 18px;
  }
  .product-subcategory-link {
    font-size: 13px;
    padding: 10px 12px;
  }
  .subcategory-name {
    font-size: 14px;
  }
  .subcategory-desc {
    font-size: 12px;
    padding-left: 0;
  }
}

/* Products Page Styles */
.products-page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  text-align: center;
}
.products-page-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.products-page-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.products-page-content {
  padding: 60px 0 100px;
}
.products-page-intro {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
}
@media (max-width: 768px) {
  .products-page-hero {
    padding: 100px 0 40px;
  }
  .products-page-content {
    padding: 40px 0 60px;
  }
}

/* Product Category Section */
.product-category-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.category-banner {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}
.category-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}
.category-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.category-banner:hover img {
  transform: scale(1.02);
}
.category-header {
  margin-bottom: 48px;
  text-align: center;
}
.category-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
}
.category-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--apple-blue), #00a8ff);
  border-radius: 2px;
}
.category-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 32px auto 0;
}

/* Product List Items */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: product-counter;
}
.product-list-item {
  display: flex;
  gap: 32px;
  padding: 28px;
  background: #ffffff;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  counter-increment: product-counter;
  overflow: hidden;
}
.product-list-item::before {
  content: counter(product-counter, decimal-leading-zero);
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 102, 204, 0.06);
  line-height: 1;
  transition: all 0.4s ease;
  pointer-events: none;
}
.product-list-item:hover::before {
  color: rgba(0, 102, 204, 0.12);
  transform: scale(1.1);
}
.product-list-item:hover {
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.12);
  transform: translateY(-4px);
}
.product-list-image {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc 0%, #eef2f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-list-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}
.product-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-list-item:hover .product-list-image img {
  transform: scale(1.08);
}
.product-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 60px;
}
.product-list-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}
.product-list-item:hover .product-list-title {
  color: var(--apple-blue);
}
.product-list-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.product-list-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--apple-blue) 0%, #0080ff 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  box-shadow: 0 4px 14px rgba(0, 102, 204, 0.3);
}
.product-list-btn:hover {
  background: linear-gradient(135deg, #0055aa 0%, #0066cc 100%);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
  transform: translateY(-2px);
}
.product-list-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.product-list-btn:hover i {
  transform: translateX(4px);
}

/* BMC Section – Highlights + Card Grid */
.bmc-section .category-header {
  margin-bottom: 40px;
}
.bmc-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.bmc-highlight-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f7;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.bmc-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--apple-blue) 0%, #0055aa 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bmc-highlight-card:hover {
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.1), 0 0 0 1px rgba(0, 102, 204, 0.12);
  border-color: rgba(0, 102, 204, 0.15);
  transform: translateY(-3px);
}
.bmc-highlight-card:hover::before {
  opacity: 1;
}
.bmc-highlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.12) 0%, rgba(0, 122, 255, 0.06) 100%);
  color: var(--apple-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.bmc-highlight-card:hover .bmc-highlight-icon {
  background: linear-gradient(135deg, var(--apple-blue) 0%, #0055aa 100%);
  color: #fff;
  transform: scale(1.05);
}
.bmc-highlight-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.bmc-highlight-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.bmc-products {
  margin-top: 0;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.bmc-products-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 102, 204, 0.15);
}
.bmc-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.bmc-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef2f7;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.bmc-card:hover {
  box-shadow: 0 16px 48px rgba(0, 102, 204, 0.14);
  transform: translateY(-6px);
  border-color: rgba(0, 102, 204, 0.2);
}
.bmc-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #f0f4f8 0%, #e2e8f0 100%);
}
.bmc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.bmc-card:hover .bmc-card-image img {
  transform: scale(1.06);
}
.bmc-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--apple-blue) 0%, #0080ff 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.35);
}
.bmc-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bmc-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.bmc-card:hover .bmc-card-title {
  color: var(--apple-blue);
}
.bmc-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex: 1;
}
.bmc-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.bmc-card-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bmc-card-features li i {
  color: var(--apple-blue);
  font-size: 0.7rem;
}

/* Solar PV Section – Redesigned */
.solar-pv-section {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 24%, #f8fafc 100%);
  padding: 64px 0 88px;
}

/* Hero banner with overlay */
.solar-pv-banner {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  position: relative;
  min-height: 320px;
}
.solar-pv-banner img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.solar-pv-banner:hover img {
  transform: scale(1.03);
}
.solar-pv-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px 40px;
  color: #fff;
}
.solar-pv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.solar-pv-badge i {
  color: #fbbf24;
}
.solar-pv-banner-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.solar-pv-banner-tagline {
  font-size: 17px;
  opacity: 0.95;
  margin: 0;
  font-weight: 500;
}

/* Intro paragraph */
.solar-pv-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.solar-pv-intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}
.solar-pv-link {
  color: var(--apple-blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.solar-pv-link:hover {
  border-bottom-color: var(--apple-blue);
  color: var(--apple-blue-hover);
}

/* MC4 highlight card */
.solar-pv-mc4-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fcf9 100%);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px rgba(0, 102, 204, 0.06), 0 0 0 1px rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.1);
  position: relative;
  overflow: hidden;
}
.solar-pv-mc4-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #22c55e 0%, var(--apple-blue) 100%);
  border-radius: 4px 0 0 4px;
}
.solar-pv-mc4-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(0, 122, 255, 0.15) 100%);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.solar-pv-mc4-card .solar-pv-subtitle {
  margin-top: 0;
}
.solar-pv-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 102, 204, 0.15);
}
.solar-pv-mc4-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* Two-column grid: Özellikler + Uygulama Alanları */
.solar-pv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.solar-pv-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.solar-pv-card:hover {
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.08), 0 0 0 1px rgba(0, 102, 204, 0.1);
  transform: translateY(-2px);
}
.solar-pv-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.solar-pv-card-title i {
  color: #16a34a;
  font-size: 1.1rem;
}
.solar-pv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.solar-pv-list li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
}
.solar-pv-list li:last-child {
  margin-bottom: 0;
}
.solar-pv-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #16a34a;
  font-size: 0.8rem;
  top: 2px;
}
.solar-pv-card-apps .solar-pv-list li::before {
  content: none;
}
.solar-pv-card-apps .solar-pv-list li i {
  position: absolute;
  left: 0;
  color: var(--apple-blue);
  font-size: 0.9rem;
  top: 2px;
}
.solar-pv-list-ordered {
  counter-reset: solar-feature;
}
.solar-pv-list-ordered li {
  counter-increment: solar-feature;
  padding-left: 36px;
}
.solar-pv-list-ordered li::before {
  content: counter(solar-feature);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
}
.solar-pv-cta {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(0, 122, 255, 0.06) 100%);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.solar-pv-cta i {
  font-size: 28px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}
.solar-pv-cta p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* Product Sublinks */
.product-sublinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-sublink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-sublink:hover {
  background: var(--apple-blue);
  border-color: var(--apple-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}
.sublink-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  padding: 0 8px;
  background: var(--apple-blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.product-sublink:hover .sublink-code {
  background: #ffffff;
  color: var(--apple-blue);
}
.sublink-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.product-sublink:hover .sublink-name {
  color: #ffffff;
}
.product-sublink i {
  font-size: 11px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.product-sublink:hover i {
  color: #ffffff;
  transform: translateX(3px);
}

/* Product Features */
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.product-feature i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  color: var(--apple-blue);
  border-radius: 8px;
  font-size: 12px;
}
.product-feature span {
  font-weight: 500;
}

/* Featured Product Item */
.product-list-item-featured {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid #e2e8f0;
}
.product-list-item-featured:hover {
  border-color: var(--apple-blue);
}
.product-list-image-large {
  width: 320px;
  height: 220px;
}
.product-list-image-large img {
  object-fit: cover;
}

/* Product Info Block */
.product-info-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
}
.product-info-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--apple-blue);
  display: inline-block;
}
.product-info-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.product-info-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 16px;
}
.product-info-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.product-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 16px;
  background: #f8fafc;
  border-radius: 8px;
}
.product-info-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--apple-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Specs Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}
.spec-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--apple-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spec-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Feature Highlights */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.feature-highlight {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.feature-highlight:hover {
  border-color: var(--apple-blue);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.08);
}
.feature-highlight i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--apple-blue) 0%, #0080ff 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
}
.feature-highlight strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.feature-highlight p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Product Table Section */
.product-table-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #e5e7eb;
}
.product-table-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}
.product-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}
.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.product-table thead {
  background: linear-gradient(135deg, #0d2c5f 0%, #1a3f7a 100%);
}
.product-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.product-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s ease;
}
.product-table tbody tr:last-child {
  border-bottom: none;
}
.product-table tbody tr:hover {
  background: #f8fafc;
}
.product-table td {
  padding: 16px 20px;
  color: var(--text-primary);
  vertical-align: middle;
}
.product-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}
.table-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: var(--apple-blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.table-link:hover {
  background: #0055aa;
  transform: scale(1.05);
}

/* Responsive Table - Mobile Grid */
@media (max-width: 900px) {
  .product-table-wrapper {
    border: none;
    background: transparent;
  }
  .product-table {
    border: none;
  }
  .product-table thead {
    display: none;
  }
  .product-table tbody {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-table tbody tr {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    gap: 12px;
  }
  .product-table tbody tr:hover {
    border-color: var(--apple-blue);
  }
  .product-table td {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .product-table td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 600;
    color: var(--apple-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .product-table td:first-child {
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4px;
  }
  .table-link {
    width: fit-content;
    margin-top: 4px;
  }
}
@media (max-width: 600px) {
  .product-table tbody {
    grid-template-columns: 1fr;
  }
  .product-info-block {
    padding: 24px;
    border-radius: 16px;
  }
  .product-info-title {
    font-size: 22px;
  }
  .feature-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-highlight {
    padding: 16px;
  }
  .feature-highlight i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .product-table-section {
    margin-top: 32px;
    padding-top: 32px;
  }
  .product-table-title {
    font-size: 20px;
  }
}

/* Product List Responsive */
@media (max-width: 1024px) {
  .product-list-image {
    width: 220px;
    height: 150px;
  }
  .product-list-image-large {
    width: 260px;
    height: 180px;
  }
  .product-list-content {
    padding-right: 40px;
  }
  .product-list-item::before {
    font-size: 40px;
    top: 24px;
    right: 24px;
  }
  .product-list-title {
    font-size: 20px;
  }
  .product-list-desc {
    font-size: 14px;
  }
  .product-features {
    gap: 12px;
  }
  .product-feature {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .product-category-section {
    padding: 40px 0 60px;
  }
  .category-banner {
    border-radius: 16px;
    margin-bottom: 36px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  }
  .category-banner::after {
    height: 80px;
  }
  .category-header {
    margin-bottom: 32px;
  }
  .category-title::after {
    width: 50px;
    height: 3px;
    bottom: -10px;
  }
  .category-desc {
    font-size: 16px;
    margin-top: 28px;
  }
  .product-list {
    gap: 16px;
  }
  .product-list-item {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
  }
  .product-list-item::before {
    font-size: 36px;
    top: 20px;
    right: 20px;
  }
  .product-list-content {
    padding-right: 0;
  }
  .product-list-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
  }
  .product-list-image-large {
    width: 100%;
    height: 220px;
  }
  .product-list-title {
    font-size: 18px;
    padding-right: 50px;
  }
  .product-list-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .product-list-btn {
    padding: 11px 20px;
  }
  .bmc-highlights {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }
  .bmc-highlight-card {
    padding: 22px 26px;
  }
  .bmc-highlight-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
    margin-bottom: 14px;
  }
  .bmc-highlight-title {
    font-size: 1.1rem;
  }
  .bmc-highlight-desc {
    font-size: 0.9rem;
  }
  .bmc-products {
    padding-top: 36px;
  }
  .bmc-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bmc-products-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .bmc-card-body {
    padding: 20px 22px 24px;
  }
  .bmc-card-title {
    font-size: 1.2rem;
  }
  .bmc-card-desc {
    font-size: 0.9rem;
  }
  .solar-pv-section {
    padding: 48px 0 64px;
  }
  .solar-pv-banner {
    border-radius: 18px;
    min-height: 260px;
    margin-bottom: 32px;
  }
  .solar-pv-banner img {
    min-height: 260px;
  }
  .solar-pv-banner-overlay {
    padding: 32px 24px 28px;
  }
  .solar-pv-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
  .solar-pv-banner-title {
    font-size: 26px;
  }
  .solar-pv-banner-tagline {
    font-size: 15px;
  }
  .solar-pv-intro {
    margin-bottom: 32px;
  }
  .solar-pv-intro-text {
    font-size: 16px;
  }
  .solar-pv-mc4-card {
    padding: 28px 24px;
    margin-bottom: 28px;
  }
  .solar-pv-mc4-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 16px;
  }
  .solar-pv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }
  .solar-pv-card {
    padding: 24px 28px;
  }
  .solar-pv-card-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  .solar-pv-subtitle {
    font-size: 1.1rem;
    margin: 28px 0 12px;
  }
  .solar-pv-list li {
    font-size: 14px;
  }
  .solar-pv-cta {
    padding: 22px 24px;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .solar-pv-cta i {
    font-size: 24px;
  }
  .solar-pv-cta p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .product-category-section {
    padding: 32px 0 48px;
  }
  .category-banner {
    border-radius: 12px;
    margin-bottom: 28px;
  }
  .category-title {
    font-size: 26px;
  }
  .category-title::after {
    width: 40px;
  }
  .category-desc {
    font-size: 15px;
    margin-top: 24px;
  }
  .product-list-item {
    padding: 16px;
    border-radius: 14px;
  }
  .product-list-item::before {
    font-size: 32px;
    top: 16px;
    right: 16px;
  }
  .product-list-image {
    height: 180px;
    border-radius: 10px;
  }
  .product-list-title {
    font-size: 17px;
    padding-right: 40px;
  }
  .product-list-desc {
    font-size: 13px;
    line-height: 1.6;
  }
  .product-list-btn {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 8px;
  }
  .product-sublinks {
    gap: 8px;
  }
  .product-sublink {
    padding: 8px 12px;
    gap: 8px;
    border-radius: 8px;
  }
  .sublink-code {
    min-width: 28px;
    height: 24px;
    font-size: 11px;
    border-radius: 5px;
  }
  .solar-pv-banner {
    min-height: 220px;
    border-radius: 14px;
  }
  .solar-pv-banner img {
    min-height: 220px;
  }
  .solar-pv-banner-overlay {
    padding: 24px 20px 20px;
  }
  .solar-pv-banner-title {
    font-size: 22px;
  }
  .solar-pv-banner-tagline {
    font-size: 14px;
  }
  .solar-pv-mc4-card {
    padding: 22px 20px;
  }
  .solar-pv-card {
    padding: 20px 22px;
  }
  .sublink-name {
    font-size: 12px;
  }
  .product-sublink i {
    font-size: 10px;
  }
  .product-features {
    gap: 10px;
    padding: 12px 0;
    margin-bottom: 16px;
  }
  .product-feature {
    font-size: 12px;
    gap: 6px;
  }
  .product-feature i {
    width: 24px;
    height: 24px;
    font-size: 10px;
    border-radius: 6px;
  }
  .product-list-image-large {
    width: 100%;
    height: 200px;
  }
  .bmc-highlights {
    gap: 14px;
    margin-bottom: 28px;
  }
  .bmc-highlight-card {
    padding: 20px 22px;
    border-radius: 16px;
  }
  .bmc-highlight-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
    margin-bottom: 12px;
  }
  .bmc-highlight-title {
    font-size: 1.05rem;
  }
  .bmc-highlight-desc {
    font-size: 0.875rem;
  }
  .bmc-products {
    margin-top: 0;
    padding-top: 28px;
  }
  .bmc-product-grid {
    gap: 16px;
  }
  .bmc-card-badge {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  .bmc-card-body {
    padding: 18px 20px 22px;
  }
  .bmc-card-title {
    font-size: 1.1rem;
  }
  .bmc-card-desc {
    font-size: 0.875rem;
  }
  .bmc-card-features li {
    font-size: 0.8125rem;
  }
  .solar-pv-content {
    margin-top: 28px;
  }
  .solar-pv-subtitle {
    font-size: 1rem;
    margin: 24px 0 10px;
  }
  .solar-pv-list li {
    font-size: 13px;
    padding-left: 32px;
  }
  .solar-pv-list-ordered li {
    padding-left: 40px;
  }
}
