:root {
  /* Brand Colors - Restored Green Theme */
  --primary: #5bc577;       /* Primary Green (rgb: 91, 197, 119) */
  --primary-dark: #46a862;  
  --primary-light: #d5f7ea; /* Tertiary/Icon Green (rgb: 213, 247, 234) */
  --secondary: #46a862;     /* Using darker green for gradients instead of violet */
  --success: #10B981;       
  
  --ink: #0F172A;           /* Slate 900 (Main headings & high-contrast text) */
  --ink-light: #475569;     /* Slate 600 (Body text) - improved contrast */
  --ink-muted: #94A3B8;     /* Slate 400 (Subtle text) */
  
  --bg-main: #FFFFFF;       /* Pure white background */
  --bg-alt: #F8FAFC;        /* Slate 50 (Alternate section background) */
  --line: #E2E8F0;          /* Slate 200 (Borders) */
  
  /* Colored Shadows - Now using Green RGB (91, 197, 119) */
  --shadow-soft: 0 4px 20px -2px rgba(91, 197, 119, 0.15);
  --shadow-hover: 0 10px 25px -5px rgba(91, 197, 119, 0.25), 0 8px 10px -6px rgba(91, 197, 119, 0.15);
  --shadow-btn: 0 4px 14px 0 rgba(91, 197, 119, 0.4);
  --shadow: var(--shadow-soft);
  
  --radius: 12px; 
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  color: var(--ink-light); 
  background-color: var(--bg-main); 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased; 
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; border-radius: var(--radius-sm); }
a { text-decoration: none; color: inherit; transition: all 0.2s ease-out; }

/* Typography */
h1, h2, h3, h4, .eyebrow { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.1; color: var(--ink); margin-bottom: 0.5em; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(3.5rem, 7vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700; }
h3 { font-size: 1.6rem; font-weight: 600; }
p { color: var(--ink-light); margin-bottom: 1.25rem; font-size: 1.1rem; max-width: 70ch; line-height: 1.7; font-weight: 400; }

.eyebrow { 
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; color: var(--bg-main); 
  display: inline-flex; margin-bottom: 1.5rem; text-transform: uppercase; 
  padding: 8px 16px; background: var(--primary); border-radius: 99px; 
}

/* Layout Utilities */
.container { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
section { padding: 120px 0; }
.section-head { text-align: center; margin-bottom: 70px; display: flex; flex-direction: column; align-items: center; }
.section-head p { text-align: center; font-size: 1.15rem; max-width: 600px; }
.relative { position: relative; }

/* Buttons */
.btn { 
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; 
  padding: 14px 32px; border-radius: var(--radius); font-family: 'Plus Jakarta Sans', sans-serif; 
  font-weight: 600; font-size: 1.05rem; letter-spacing: 0.02em; 
  transition: all 0.2s ease-out; cursor: pointer; border: 1px solid transparent; 
}

.btn-primary { 
  background: linear-gradient(135deg, var(--primary), var(--secondary)); 
  color: #ffffff; 
  box-shadow: var(--shadow-btn); 
  border-radius: 9999px;
}
.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px 0 rgba(91, 197, 119, 0.6); 
}

.submit-btn-animated { transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.submit-btn-animated:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: #ffffff !important;
    transform: scale(1.03) rotate(2deg) !important;
    box-shadow: 0 15px 30px -10px rgba(91, 197, 119, 0.6) !important;
}

.btn-secondary { border-color: var(--line); color: var(--ink); background: var(--bg-main); border-radius: 9999px; }
.btn-secondary:hover { background: var(--bg-alt); border-color: var(--ink-muted); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-sm { padding: 10px 20px; font-size: 0.95rem; }

/* Navigation */
header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
nav { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 16px; }
.brand h2 { font-size: 1.6rem; margin: 0; color: var(--ink); letter-spacing: -0.02em; }
.brand small { max-width: 200px; color: var(--ink-light); font-size: 0.75rem; line-height: 1.3; font-weight: 500; border-left: 1px solid var(--line); padding-left: 16px; display: none; }
.nav-links { display: flex; align-items: center; gap: 40px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500; color: var(--ink-light); }
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary-dark); border-radius: 2px; transition: width 0.3s ease; }
.nav-links a:not(.nav-cta):hover::after, .nav-links a.active:not(.nav-cta)::after { width: 100%; }
.nav-links a:not(.nav-cta):hover, .nav-links a.active:not(.nav-cta) { color: var(--ink); font-weight: 600; }
.nav-cta { padding: 10px 24px; background: var(--ink); color: var(--bg-main); border-radius: var(--radius-sm); font-weight: 500; transition: all 0.3s ease; }
.nav-cta:hover { background: var(--primary); color: var(--ink); transform: translateY(-2px); }
.menu-btn { display: none; border: 0; background: none; font-size: 2rem; cursor: pointer; color: var(--ink); }

/* Hero */
.hero { min-height: 95vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--bg-main); padding-top: 140px; padding-bottom: 80px; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('assets/Banner.jpeg'); background-size: cover; background-position: center; z-index: 0; opacity: 0.9; }
.hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0.85) 55%, rgba(255,255,255,0) 95%); z-index: 1; pointer-events: none; }
.hero-content { 
  display: flex; flex-direction: column; align-items: flex-start;
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 48px; 
  position: relative; z-index: 2; 
}
.hero-text-col { display: flex; flex-direction: column; align-items: flex-start; text-align: left; max-width: 700px; }
.hero h1 { margin-bottom: 28px; line-height: 1.15; }
.hero h1 span.gradient-text { 
  background: linear-gradient(135deg, var(--primary), var(--secondary)); 
  -webkit-background-clip: text; 
  background-clip: text; 
  color: transparent; 
}
.hero h1 span.underline-decor { position: relative; display: inline-block; }
.hero h1 span.underline-decor::after { content: ''; position: absolute; bottom: 8px; left: 0; width: 100%; height: 16px; background: var(--primary-light); z-index: -1; transform: rotate(-1deg); border-radius: 4px; }
.hero-text-col > p { font-size: 1.2rem; max-width: 550px; margin: 0 0 48px; color: var(--ink-light); line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 64px; }

/* Isometric Hero Card */
.hero-visual-col { perspective: 2000px; position: relative; display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; }
.isometric-hero-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-12deg);
  animation: floatIsometric 6s ease-in-out infinite;
}
.isometric-hero-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(91, 197, 119, 0.3), 0 18px 36px -18px rgba(91, 197, 119, 0.2);
  border: 4px solid var(--bg-main);
  background: var(--bg-main);
}
.isometric-hero-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  display: block;
}
.facility-visual-col {
  perspective: 2000px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@keyframes floatIsometric {
  0% { transform: rotateX(5deg) rotateY(-12deg) translateY(0); }
  50% { transform: rotateX(7deg) rotateY(-10deg) translateY(-15px); }
  100% { transform: rotateX(5deg) rotateY(-12deg) translateY(0); }
}

/* Atmospheric Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; z-index: 1; pointer-events: none; animation: pulseBlob 8s infinite alternate ease-in-out; }
.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--primary-light); }
.blob-2 { bottom: 10%; right: 20%; width: 400px; height: 400px; background: rgba(91, 197, 119, 0.2); animation-delay: -4s; }

@keyframes pulseBlob {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(20px, 20px); }
}

/* Hero Badges */
.hero-trust-badges { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 20px; }
.hero-badge { display: flex; align-items: center; gap: 16px; font-size: 0.95rem; color: var(--ink-light); }
.hero-badge svg { color: var(--primary-dark); width: 24px; height: 24px; background: var(--primary-light); border-radius: 50%; padding: 8px; box-sizing: content-box; border: 1px solid var(--primary); }
.hero-badge strong { color: var(--ink); font-weight: 700; font-size: 1rem; display: block; margin-bottom: 2px; }

/* Facility Section */
.facility-section {
  position: relative;
  background-image: url('assets/1.jpg');
  background-size: cover;
  background-position: center left;
  padding: 100px 0;
}
.facility-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 5%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,1) 70%);
  z-index: 0;
}
.facility-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 100px 0; max-width: 1400px; margin: 0 auto; gap: 40px; }
.facility-visual-col { perspective: 1200px; padding: 0; }
.isometric-hero-wrapper { transform: scale(1.15) rotateY(15deg) rotateX(5deg); transform-style: preserve-3d; }
.facility-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.facility-text-col h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  color: var(--ink);
  line-height: 1.15;
}
.facility-text-col p {
  font-size: 1.125rem;
  color: var(--ink-light);
  line-height: 1.6;
}
.isometric-hero-wrapper { transform: rotateY(15deg) rotateX(5deg); transform-style: preserve-3d; }
.isometric-facility-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 24px; align-items: center; }
.isometric-facility-grid .card-main { z-index: 2; transform: translateY(-20px) translateZ(30px); }
.isometric-facility-grid .card-sub { z-index: 1; transform: translateY(40px) translateZ(-10px); }
.isometric-hero-card { border-radius: 20px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.4); background: #ffffff; }
.facility-image-wrap { position: relative; width: 100%; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 24px; z-index: 2; }
.facility-image-wrap img { width: 100%; height: 100%; display: block; object-fit: contain; background: var(--bg-main); border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease; }
.facility-image-wrap .facility-img-main { grid-column: 1; grid-row: 1 / 3; aspect-ratio: 4/3; }
.facility-image-wrap .facility-img-sub { grid-column: 2; aspect-ratio: 4/3; }
.facility-image-wrap img:hover { transform: translateY(-8px) scale(1.02); z-index: 10; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

/* Value Props Banner */
.value-props { background: var(--bg-alt); padding: 80px 0; border-bottom: 1px solid var(--line); }
.value-props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; perspective: 1000px; }
.prop-card { background: var(--bg-main); border: 1px solid var(--line); border-radius: 16px; padding: 40px 24px; display: flex; flex-direction: column; align-items: center; transition: all 0.3s ease-out; box-shadow: var(--shadow-soft); }
.prop-card:hover { transform: translateY(-4px) rotateX(2deg) rotateY(-4deg); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.prop-icon { width: 72px; height: 72px; background: var(--primary-light); color: var(--primary); border-radius: 16px; display: grid; place-items: center; margin-bottom: 24px; transition: all 0.3s ease-out; }
.prop-card:hover .prop-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #ffffff; transform: scale(1.1) rotate(5deg); box-shadow: var(--shadow-btn); }
.prop-card h4 { margin-bottom: 12px; font-size: 1.25rem; color: var(--ink); }
.prop-card p { font-size: 1rem; margin: 0; color: var(--ink-light); line-height: 1.5; }

.products-to-contact-bg {
  position: relative;
  background-image: url('assets/Plant.png');
  background-size: cover;
  background-position: center;
}
.products-to-contact-bg > section {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.category-section { position: relative; }
.category-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,1) 10%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0) 95%);
  z-index: -1;
  pointer-events: none;
}
.contact-page { position: relative; }
.contact-page::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 95%);
  z-index: -1;
  pointer-events: none;
}
.text-left { text-align: left !important; margin-left: 0 !important; }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; perspective: 2000px; }
.catalog-card { background: var(--bg-main); border-radius: 16px; overflow: hidden; border: 1px solid var(--line); transition: all 0.3s ease-out; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-soft); }
.catalog-card:nth-child(even):hover { transform: translateY(-8px) rotateY(4deg); }
.catalog-card:nth-child(odd):hover { transform: translateY(-8px) rotateY(-4deg); }
.catalog-card:hover { box-shadow: var(--shadow-hover); border-color: var(--primary-light); z-index: 10; }
.catalog-img { width: 100%; height: 320px; overflow: hidden; position: relative; background: var(--bg-alt); padding: 24px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); }
.catalog-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s ease-out; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05)); }
.catalog-card:hover .catalog-img img { transform: scale(1.05) translateY(-4px); filter: drop-shadow(0 20px 30px rgba(91, 197, 119, 0.2)); }
.catalog-content { padding: 32px 24px; display: flex; flex-direction: column; flex-grow: 1; align-items: center; text-align: center; }
.catalog-content h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; transition: color 0.3s ease; }
.catalog-card:hover .catalog-content h3 { color: var(--primary); }
.catalog-content p { color: var(--ink-light); margin-bottom: 0; flex-grow: 1; font-size: 1rem; }

/* Specs Table */
.specs-table-wrap { margin: 64px auto 0; max-width: 1000px; background: var(--bg-main); border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); }
.specs-table { width: 100%; border-collapse: collapse; text-align: left; }
.specs-table th, .specs-table td { padding: 16px 24px; border-bottom: 1px solid var(--line); }
.specs-table th { background: var(--bg-alt); font-weight: 600; color: var(--ink); font-family: 'Outfit', sans-serif; font-size: 1.1rem; }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td { color: var(--ink-light); }
.specs-table tr:hover td { background: var(--bg-alt); color: var(--ink); }

/* Products Page (Deprecated) */
.catalog-hero { min-height: 40vh; position: relative; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.catalog-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.catalog-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); z-index: 2; }
.catalog-hero .container { z-index: 3; position: relative; }
.catalog-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 16px; }
.catalog-hero-subtitle { font-size: clamp(1rem, 3vw, 1.25rem); max-width: 600px; margin: 0 auto; color: var(--ink); }

.catalog-layout { display: grid; grid-template-columns: 250px 1fr; gap: 48px; margin-top: 64px; margin-bottom: 120px; }
.catalog-sidebar, .catalog-main { min-width: 0; }
.sidebar-sticky { position: sticky; top: 100px; }
.sidebar-nav { list-style: none; margin-top: 24px; }
.sidebar-nav li { margin-bottom: 12px; }
.sidebar-nav a { display: block; padding: 10px 16px; border-radius: var(--radius-sm); color: var(--ink-light); font-weight: 500; transition: all 0.2s ease; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--bg-alt); color: var(--ink); }

.mobile-category-select { display: none; }

.catalog-category { scroll-margin-top: 100px; margin-bottom: 80px; }
@media (min-width: 769px) {
  .catalog-category { display: block !important; }
}
.category-header { margin-bottom: 32px; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.category-header h2 { font-size: 2.2rem; margin-bottom: 8px; }

.interactive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 32px; }
.product-card { background: var(--bg-main); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--ink-muted); }
.product-img-wrap { background: var(--bg-alt); padding: 32px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); height: 260px; overflow: hidden; }
.product-img-wrap img { max-width: 100%; max-height: 100%; mix-blend-mode: multiply; transition: transform 0.6s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-info { padding: 24px; flex-grow: 1; }
.product-info h3 { font-size: 1.3rem; margin-bottom: 8px; }
.product-info p { font-size: 0.95rem; margin-bottom: 0; }
.product-tech-reveal { padding: 0 24px 24px; }
.tech-specs-table { margin-bottom: 24px; border-top: 1px solid var(--line); padding-top: 16px; }
.tech-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 8px; }
.tech-row span { color: var(--ink-light); }
.tech-row b { color: var(--ink); font-weight: 600; }

.custom-tooling-banner { position: relative; padding: 120px 0; text-align: center; color: white; overflow: hidden; }
.custom-tooling-banner .banner-bg-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; z-index: 1; }
.custom-tooling-banner .banner-bg-grid img { flex: 1; width: 33.333%; height: 100%; object-fit: cover; }
.custom-tooling-banner .banner-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.85); z-index: 2; }
.custom-tooling-banner .container { z-index: 3; position: relative; }
.custom-tooling-banner h2 { color: white; font-size: 3rem; margin-bottom: 16px; }
.custom-tooling-banner p { color: rgba(255,255,255,0.9); font-size: 1.2rem; max-width: 700px; margin: 0 auto 32px; }

/* Contact Page */
.contact-page { padding: 120px 0 60px; }
.contact-sales-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-trust h1 { margin-bottom: 24px; }
.contact-trust p { margin-bottom: 48px; }
.contact-trust { max-width: 500px; }
.contact-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.4);
}
.contact-trust-list { margin-top: 40px; display: flex; flex-direction: column; gap: 32px; }
.trust-point { display: flex; gap: 20px; align-items: flex-start; cursor: default; }
.trust-point-icon { 
    flex-shrink: 0; 
    width: 72px; 
    height: 72px; 
    border-radius: 16px; 
    background: var(--primary-light); 
    color: var(--primary); 
    display: grid; 
    place-items: center; 
    transition: all 0.3s ease-out; 
}
.trust-point:hover .trust-point-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary)); 
    color: #ffffff; 
    transform: scale(1.1) rotate(5deg); 
    box-shadow: var(--shadow-btn); 
}
.trust-point h4 { margin-bottom: 8px; font-size: 1.25rem; color: var(--ink); }
.trust-point p { font-size: 0.95rem; margin: 0; }

.form-group { margin-bottom: 24px; }
.form-label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 10px; font-size: 1.05rem; }
.form-control { width: 100%; padding: 16px 20px; border: 1px solid #cbd5e1; border-radius: 12px; font-family: inherit; font-size: 1.05rem; color: var(--ink); background: #ffffff; transition: all 0.3s ease; box-shadow: inset 0 1px 2px rgba(0,0,0,0.05); }
.form-control:focus { outline: none; border-color: var(--primary); background: var(--bg-main); box-shadow: 0 0 0 4px rgba(91,197,119, 0.15); transform: translateY(-2px); }

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%232C3A35%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

textarea.form-control { resize: vertical; min-height: 120px; }
.checkbox-group { display: flex; gap: 24px; margin-bottom: 16px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; cursor: pointer; color: var(--ink); font-weight: 500; user-select: none; }
.custom-checkbox { width: 18px; height: 18px; accent-color: var(--primary-dark); cursor: pointer; }

/* Pre-Footer CTA */
.pre-footer-cta { background: var(--bg-alt); padding-top: 40px; padding-bottom: 0; margin-top: 60px; }
.cta-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.cta-text { max-width: 500px; }
.cta-text h2 { font-size: 3rem; font-weight: 500; letter-spacing: -0.03em; margin-bottom: 12px; color: var(--ink); }
.cta-text h2 span { color: var(--primary); }
.cta-text p { font-size: 1.05rem; color: var(--ink-light); line-height: 1.5; margin: 0; }
.cta-actions { display: flex; gap: 16px; align-items: center; }
.cta-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em;
    text-decoration: none; transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 4px;
}
.cta-btn:hover { opacity: 0.9; }
.cta-btn-primary { background: var(--primary); color: white; }
.cta-btn-secondary { background: #E5E7EB; color: var(--ink); }
.map-panorama { width: 100%; display: flex; }
.map-panorama iframe { width: 100%; height: 350px; object-fit: cover; }

/* Minimal Footer */
.minimal-footer { background: var(--bg-alt); padding: 40px 0 20px; border-top: 1px solid var(--line); }
.footer-main-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.footer-links-center { display: flex; gap: 32px; }
.footer-links-center a { font-size: 0.8rem; font-weight: 700; color: var(--ink-light); letter-spacing: 0.05em; transition: color 0.2s; text-decoration: none; }
.footer-links-center a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { color: var(--ink); transition: color 0.2s; display: flex; }
.footer-social a:hover { color: var(--primary); }
.footer-copyright-row { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--line); }
.footer-copyright-row p { font-size: 0.75rem; color: var(--ink-muted); margin: 0; }
.made-with-love { font-size: 0.75rem; color: var(--ink-muted); text-decoration: none; transition: color 0.2s; font-weight: 500; }
.made-with-love:hover { color: var(--ink); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.75rem; color: var(--ink-muted); transition: color 0.2s; text-decoration: none; }
.footer-legal a:hover { color: var(--ink); }

@media (max-width: 768px) {
    .pre-footer-cta { margin-top: 40px; padding-top: 40px; }
    .cta-header-row { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
    .cta-text h2 { font-size: 2rem; margin-bottom: 8px; }
    .cta-actions { width: 100%; justify-content: center; }
    .cta-btn { width: auto; min-width: 240px; }
    .map-panorama iframe { height: 250px; }
    
    .minimal-footer { padding: 40px 0 24px; text-align: center; }
    .footer-main-row { flex-direction: column; align-items: center; gap: 20px; margin-bottom: 32px; }
    .footer-logo { order: -1; }
    .footer-copyright-row { flex-direction: column; gap: 12px; align-items: center; text-align: center; border-top: 1px solid var(--line); padding-top: 24px; }
}

/* Animations */
.stagger-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.stagger-up.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* CTA Block */
.cta-block { text-align: center; padding: 100px 0; background: var(--bg-main); border-top: 1px solid var(--line); }
.cta-block h2 { margin-bottom: 16px; }
.cta-block p { margin: 0 auto 32px; max-width: 600px; }

/* --- Responsive System --- */

/* Tablet & Smaller Desktop (max 1024px) */
@media (max-width: 1024px) {
  section { padding: 80px 0; }
  /* Hero Responsive updates */
  .hero { padding-top: 120px; padding-bottom: 60px; min-height: auto; }
  .hero::after { background: linear-gradient(180deg, rgba(255,255,255,1) 60%, rgba(255,255,255,0.85) 85%, rgba(255,255,255,0) 100%); }
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text-col { align-items: center; text-align: center; padding-right: 0; }
  .hero-text-col > p { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-trust-badges { justify-content: center; }
  .isometric-hero-wrapper { margin-right: 0; max-width: 100%; }
  
  h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
  h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
  
  /* Navigation to Mobile Menu at Tablet */
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 80px; left: 0; width: 100%;
    background: var(--bg-main); flex-direction: column; padding: 24px;
    border-bottom: 1px solid var(--line); gap: 24px; z-index: 100;
    box-shadow: var(--shadow);
  }
  
  .value-props-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  
  .catalog-layout { grid-template-columns: 200px 1fr; gap: 32px; }
  
  .contact-sales-grid { grid-template-columns: 1fr; gap: 48px; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablet Portrait & Large Mobile (max 768px) */
@media (max-width: 768px) {  
  /* Layouts to 1 column */
  .catalog-layout, .footer-grid { 
    grid-template-columns: 1fr; gap: 48px; 
  }
  .sidebar-sticky { position: static; display: flex; flex-direction: column; padding-bottom: 16px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
  .sidebar-sticky h3 { margin-bottom: 12px; }
  .mobile-category-select { 
    display: block; width: 100%; padding: 12px 16px; border: 1px solid var(--line); 
    border-radius: var(--radius-sm); background: var(--bg-main); font-size: 1rem; 
    font-family: inherit; color: var(--ink); margin-bottom: 8px;
    appearance: none; -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  }
  .sidebar-nav { display: none; }
  
  .value-props-grid, .category-grid { grid-template-columns: 1fr; gap: 24px; }
  
  .interactive-grid { grid-template-columns: 1fr; }
  
  .facility-image-wrap { grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 12px; margin-top: 24px; }
  .facility-image-wrap .facility-img-main { grid-column: 1; grid-row: 1 / 3; aspect-ratio: 3/4; border-radius: 12px; }
  .facility-image-wrap .facility-img-sub:nth-child(2) { grid-column: 2; grid-row: 1; aspect-ratio: 1/1; border-radius: 12px; }
  .facility-image-wrap .facility-img-sub:nth-child(3) { grid-column: 2; grid-row: 2; aspect-ratio: 1/1; border-radius: 12px; }
  .isometric-facility-grid { grid-template-columns: 1fr; gap: 24px; }
  
  .facility-content { display: flex; flex-direction: column-reverse; gap: 40px; }
  .facility-section::before { background: linear-gradient(180deg, rgba(255,255,255,0) 10%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,1) 60%); }
  
  .category-section::before { background: linear-gradient(180deg, rgba(255,255,255,1) 10%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0) 95%); }
  .contact-page::before { background: linear-gradient(180deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 95%); }
  
  /* Contact Form Mobile Refinements */
  .contact-sales-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { 
    padding: 32px 24px; 
    border: 1px solid #cbd5e1; /* Added clear border for mobile */
    background: #ffffff; /* Solid background for text legibility */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); 
  }
  .form-control { padding: 12px 16px; font-size: 1rem; }
  .contact-trust h2 { font-size: 2.2rem; }
  
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 400px; margin: 0 auto 40px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust-badges { justify-content: flex-start; gap: 16px; flex-direction: column; width: 100%; max-width: 400px; margin: 0 auto; }
  
  .map-container { margin-top: 48px; }
  .map-container iframe { height: 350px; }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  section { padding: 60px 0; }
  .hero { padding: 120px 0 40px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .container { width: calc(100% - 32px); }
  .product-img-wrap { height: 200px; padding: 16px; }
  .catalog-img { height: 200px; }
  
  .tech-row { flex-direction: column; gap: 4px; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
  .tech-row span { font-size: 0.85rem; }
  .product-info h3 { font-size: 1.1rem; }
  .product-info p { font-size: 0.85rem; }
}

/* Accessibility & UI/UX Pro Max Guidelines */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 2px;
}

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

