@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Nunito:wght@700;800;900&display=swap');

:root {
  /* Colors */
  --canvas-bg: #F4F1FA;
  --text-primary: #332F3A;
  --text-muted: #635F69;
  
  --accent-violet: #7C3AED;
  --accent-violet-light: #A78BFA;
  --accent-pink: #DB2777;
  --accent-blue: #0EA5E9;
  --accent-green: #10B981;
  --accent-amber: #F59E0B;
  
  /* Fonts */
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Shadows - The Engine of Clay */
  --shadow-deep-clay: 
    30px 30px 60px #cdc6d9,
    -30px -30px 60px #ffffff,
    inset 10px 10px 20px rgba(139, 92, 246, 0.05),
    inset -10px -10px 20px rgba(255, 255, 255, 0.8);
    
  --shadow-clay-card: 
    16px 16px 32px rgba(160, 150, 180, 0.2),
    -10px -10px 24px rgba(255, 255, 255, 0.9),
    inset 6px 6px 12px rgba(139, 92, 246, 0.03),
    inset -6px -6px 12px rgba(255, 255, 255, 1);
    
  --shadow-clay-card-hover: 
    20px 20px 40px rgba(160, 150, 180, 0.28),
    -12px -12px 30px rgba(255, 255, 255, 0.95),
    inset 8px 8px 16px rgba(139, 92, 246, 0.05),
    inset -8px -8px 16px rgba(255, 255, 255, 1);
    
  --shadow-clay-button: 
    12px 12px 24px rgba(139, 92, 246, 0.25),
    -8px -8px 16px rgba(255, 255, 255, 0.4),
    inset 4px 4px 8px rgba(255, 255, 255, 0.4),
    inset -4px -4px 8px rgba(0, 0, 0, 0.1);
    
  --shadow-clay-button-hover: 
    16px 16px 32px rgba(139, 92, 246, 0.35),
    -10px -10px 20px rgba(255, 255, 255, 0.5),
    inset 6px 6px 10px rgba(255, 255, 255, 0.5),
    inset -6px -6px 10px rgba(0, 0, 0, 0.12);

  --shadow-clay-pressed: 
    inset 10px 10px 20px #d9d4e3,
    inset -10px -10px 20px #ffffff;
}

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

body {
  background-color: var(--canvas-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-primary);
}

/* Violetbeard background canvas */
#violetbeard-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Background floating blobs */
.floating-blobs-container {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  will-change: transform;
}

.blob-1 {
  width: 50vw;
  height: 50vw;
  background-color: var(--accent-violet);
  top: -10%;
  left: -10%;
  animation: clay-float 15s infinite ease-in-out;
}

.blob-2 {
  width: 45vw;
  height: 45vw;
  background-color: var(--accent-pink);
  bottom: -10%;
  right: -5%;
  animation: clay-float-delayed 18s infinite ease-in-out;
}

.blob-3 {
  width: 35vw;
  height: 35vw;
  background-color: var(--accent-blue);
  top: 40%;
  left: 60%;
  animation: clay-float 22s infinite ease-in-out;
}

/* Custom cursor */
.custom-cursor {
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent-violet);
  background-color: rgba(124, 58, 237, 0.05);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  will-change: top, left, transform;
}

@media (max-width: 1024px) {
  .custom-cursor {
    display: none;
  }
}

.custom-cursor.hovering {
  width: 50px;
  height: 50px;
  background-color: rgba(219, 39, 119, 0.1);
  border-color: var(--accent-pink);
}

/* Animations */
@keyframes clay-float {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-30px) rotate(3deg) scale(1.05); }
}

@keyframes clay-float-delayed {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1.05); }
  50% { transform: translateY(-25px) rotate(-3deg) scale(0.95); }
}

@keyframes clay-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Core Claymorphism Components */
.clay-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: var(--shadow-clay-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.clay-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-clay-card-hover);
}

.clay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 2rem;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  outline: none;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, background 0.2s ease;
  user-select: none;
}

.clay-button-primary {
  background: linear-gradient(135deg, var(--accent-violet-light) 0%, var(--accent-violet) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-clay-button);
}

.clay-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-clay-button-hover);
}

.clay-button-primary:active {
  transform: scale(0.93);
  box-shadow: var(--shadow-clay-pressed);
}

.clay-button-secondary {
  background: #ffffff;
  color: var(--text-primary);
  box-shadow: var(--shadow-clay-button);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.clay-button-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-clay-button-hover);
}

.clay-button-secondary:active {
  transform: scale(0.93);
  box-shadow: var(--shadow-clay-pressed);
}

.clay-input {
  width: 100%;
  height: 56px;
  padding: 0 1.5rem;
  border-radius: 20px;
  border: none;
  background-color: #EFEBF5;
  box-shadow: var(--shadow-clay-pressed);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  outline: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.clay-input:focus {
  background-color: #ffffff;
  box-shadow: var(--shadow-clay-card);
}

/* Headers & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  height: 72px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-clay-card);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text-primary);
  text-decoration: none;
}

.logo i {
  color: var(--accent-violet);
  font-size: 1.6rem;
  animation: clay-breathe 4s infinite ease-in-out;
}

.logo-text span {
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--accent-violet);
  transform: translateY(-2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  background: #EFEBF5;
  box-shadow: var(--shadow-clay-pressed);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.lang-switch:hover {
  transform: scale(1.08);
  background-color: #ffffff;
  box-shadow: var(--shadow-clay-button);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-primary);
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EFEBF5;
  box-shadow: var(--shadow-clay-pressed);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.mobile-menu-btn:hover {
  background-color: #ffffff;
  box-shadow: var(--shadow-clay-button);
  transform: scale(1.05);
}

.mobile-drawer {
  display: none;
  position: absolute;
  top: 90px;
  left: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow-deep-clay);
  flex-direction: column;
  gap: 0.8rem;
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.mobile-drawer.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-drawer a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 18px;
  background: #EFEBF5;
  box-shadow: var(--shadow-clay-pressed);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-drawer a:hover {
  background: #ffffff;
  color: var(--accent-violet);
  box-shadow: var(--shadow-clay-button);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 6rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-badge {
  background: #ffffff;
  box-shadow: var(--shadow-clay-card);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent-violet);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge i {
  animation: clay-breathe 2s infinite ease-in-out;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  max-w: 1000px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-violet) 20%, var(--accent-pink) 60%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 576px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
}

/* Stats Orbs */
.stats-container {
  display: grid;
  grid-template-cols: repeat(4, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1100px;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

.stat-orb {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-clay-card);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  padding: 1.5rem;
}

.stat-orb:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: var(--shadow-clay-card-hover);
}

.stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

/* Industries & Catalog Section */
.catalog-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Industry Tabs */
.industry-tabs-container {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 3rem;
  overflow-x: auto;
  padding: 0.8rem;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .industry-tabs-container {
    justify-content: center;
  }
}

.industry-tabs {
  display: flex;
  flex-wrap: nowrap;
  background: #EFEBF5;
  box-shadow: var(--shadow-clay-pressed);
  padding: 0.5rem;
  border-radius: 30px;
  gap: 0.25rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  background: #ffffff;
  color: var(--accent-violet);
  box-shadow: var(--shadow-clay-button);
  transform: translateY(-2px);
}

/* Catalog Grid & Filters */
.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
}

@media (max-width: 768px) {
  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
  }
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 450px;
}

.search-box i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-box .clay-input {
  padding-left: 3rem;
}

.grid-layout-options {
  display: flex;
  gap: 1rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-cols: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.product-series-tag {
  background-color: var(--accent-violet-light);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-family: var(--font-heading);
}

.product-code {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--accent-violet);
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-highlight {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.5;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.spec-label {
  color: var(--text-muted);
}

.spec-value {
  font-weight: 700;
  color: var(--text-primary);
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.learn-more-link {
  color: var(--accent-violet);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.learn-more-link:hover {
  color: var(--accent-pink);
  transform: translateX(3px);
}

/* Compare Matrix Table styling */
.matrix-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.matrix-table-wrapper {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-clay-card);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.matrix-table th {
  background: var(--text-primary);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

.matrix-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  font-weight: 500;
}

.matrix-table tr:last-child td {
  border-bottom: none;
}

.matrix-table tr:hover {
  background-color: rgba(124, 58, 237, 0.03);
}

.star-rating {
  color: var(--accent-amber);
}

/* Interactive Detail Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(51, 47, 58, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 650px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  box-shadow: var(--shadow-deep-clay);
  padding: 3rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #EFEBF5;
  box-shadow: var(--shadow-clay-pressed);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.modal-close-btn:hover {
  transform: rotate(90deg) scale(1.05);
  background-color: #ffffff;
  box-shadow: var(--shadow-clay-button);
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-header .product-code {
  font-size: 2rem;
}

.modal-header h3 {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  line-height: 1.2;
}

.modal-content-section {
  margin-bottom: 2rem;
}

.modal-content-section h4 {
  font-size: 1rem;
  color: var(--accent-violet);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.modal-content-section p {
  color: var(--text-muted);
  line-height: 1.6;
}

.modal-specs-list {
  display: grid;
  grid-template-cols: repeat(2, 1fr);
  gap: 1.25rem;
  background: #EFEBF5;
  box-shadow: var(--shadow-clay-pressed);
  padding: 1.5rem;
  border-radius: 24px;
  margin-bottom: 2rem;
}

@media (max-width: 576px) {
  .modal-specs-list {
    grid-template-cols: 1fr;
  }
}

.modal-spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
}

.modal-spec-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* Contact Footer */
footer {
  padding: 6rem 2rem 4rem;
  position: relative;
  background: var(--text-primary);
  color: #ffffff;
  border-radius: 60px 60px 0 0;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.1);
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  color: #ffffff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-cols: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .logo i {
  color: var(--accent-violet-light);
}

.footer-desc {
  color: #94A3B8;
  max-width: 400px;
}

.footer-links-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-col a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-col a:hover {
  color: var(--accent-violet-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748B;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================
   6. Comprehensive Mobile & Responsive Overrides
   ========================================== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .nav-container {
    padding: 0 1.25rem;
    height: 64px;
    border-radius: 32px;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.75rem 1rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .matrix-section {
    padding: 4rem 1rem;
  }
  
  footer {
    padding: 4rem 1.5rem 3rem;
    border-radius: 40px 40px 0 0;
  }
}

@media (max-width: 576px) {
  body, html {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  header {
    padding: 0.5rem 0.75rem;
  }
  
  .nav-container {
    padding: 0 0.75rem;
  }
  
  .logo-text {
    font-size: 1.15rem;
  }
  
  .logo i {
    font-size: 1.3rem;
  }
  
  .lang-switch {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
  }
  
  .cta-inquire-btn {
    font-size: 0.75rem !important;
    height: 38px !important;
    padding: 0 0.8rem !important;
  }

  .hero {
    padding: 4rem 1rem 3rem;
  }
  
  .hero h1 {
    font-size: 2.1rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .stat-orb {
    padding: 1rem;
  }
  
  .stat-num {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .catalog-section {
    padding: 4rem 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 0.95rem;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .clay-card {
    padding: 1.5rem;
    border-radius: 24px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-container {
    padding: 1.5rem;
    border-radius: 28px;
  }
  
  .modal-header h3 {
    font-size: 1.3rem;
  }
  
  .modal-close-btn {
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 350px) {
  .logo-text {
    font-size: 1rem;
  }
  
  .cta-inquire-btn {
    display: none; /* Hide button on extremely tiny screens (<350px) to prevent overlap */
  }
}

