@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM & TOKEN VARIABLES --- */
:root {
  /* Brand Colors */
  --schulthess-blue: #1A8FE5;
  --schulthess-blue-dark: #0f62a1;
  --schulthess-blue-light: #e6f3fc;
  
  /* Neutral Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: #1e1d1c;
  --bg-dark-accent: #2c2a29;
  --text-dark: #333333;
  --text-muted: #666666;
  --text-light: #ffffff;
  --border-color: #e5e7eb;
  --border-color-dark: #cccccc;
  
  /* Fonts */
  --font-heading: 'Bebas Neue', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* Custom Scrollbar - Flat and Minimal */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color-dark);
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--schulthess-blue);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-dark);
}

p {
  font-weight: 400;
  color: var(--text-muted);
}

.heading-lg {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.0;
  margin-bottom: 1.5rem;
}

.heading-md {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.heading-sm {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  letter-spacing: 0.02em;
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0px; /* Sharp corners like Swiss site */
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--schulthess-blue);
  color: var(--text-light);
  border-color: var(--schulthess-blue);
}

.btn-primary:hover {
  background-color: var(--schulthess-blue-dark);
  border-color: var(--schulthess-blue-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.btn-white-outline {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-white-outline:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

.btn-green {
  background-color: #a5cd7c;
  color: #1e1d1c;
  border-color: #a5cd7c;
}

.btn-green:hover {
  background-color: #8eb365;
  border-color: #8eb365;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.logo-nautilus {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2.0rem;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-text span {
  color: var(--schulthess-blue);
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--schulthess-blue);
  border-bottom-color: var(--schulthess-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: left var(--transition-normal);
    border-top: 1px solid var(--border-color);
  }
  .nav-links.active {
    left: 0;
  }
}

/* --- TRUST BANNER --- */
.trust-banner {
  background: var(--bg-dark-accent);
  color: var(--text-light);
  padding: 0.5rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 999;
  font-weight: 600;
  margin-top: 80px; /* Account for navbar */
  border-bottom: 1px solid var(--border-color);
}

.trust-banner span {
  color: var(--schulthess-blue);
  font-weight: bold;
}

/* --- HERO SECTION --- */
.hero {
  background: var(--bg-secondary);
  padding: 5rem 0;
  min-height: auto;
  border-bottom: 1px solid var(--border-color);
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--schulthess-blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-descr {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Circular Drum / Machine Graphic Styled Clean & Flat */
.drum-graphic {
  position: relative;
  width: 320px;
  height: 320px;
  border: 1px solid var(--border-color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
}

.drum-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-color);
}

.drum-circle-outer {
  width: 85%;
  height: 85%;
  border: 2px solid var(--schulthess-blue);
  opacity: 0.2;
}

.drum-circle-mid {
  width: 70%;
  height: 70%;
  border: 1.5px dashed var(--schulthess-blue);
  opacity: 0.4;
}

.drum-circle-inner {
  width: 55%;
  height: 55%;
  border: 1px solid var(--border-color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

.drum-core {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--schulthess-blue);
  letter-spacing: 0.05em;
  text-align: center;
}

.drum-core span {
  display: block;
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (max-width: 992px) {
  .hero {
    padding: 3rem 0;
  }
  .drum-graphic {
    width: 250px;
    height: 250px;
    margin-top: 2rem;
  }
}

/* --- STATS SECTION --- */
.stats-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 1rem;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--schulthess-blue);
  margin-bottom: 0.25rem;
}

.stat-num span {
  color: #a5cd7c;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cccccc;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .stat-item {
    border-right: none;
  }
}

/* --- FEATURES GRID / PILLARS --- */
.features-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.section-header .section-tag {
  color: var(--schulthess-blue);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0px;
  padding: 2rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card:hover {
  background: var(--bg-primary);
  border-color: var(--schulthess-blue);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--schulthess-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--schulthess-blue);
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--schulthess-blue);
  color: var(--text-light);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-title {
  color: var(--text-dark);
  font-size: 1.35rem;
}

.feature-descr {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- PARTNERSHIP HIGHLIGHT --- */
.partnership-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.partnership-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.badge-partnership {
  align-self: center;
  background: var(--schulthess-blue-light);
  color: var(--schulthess-blue);
  border: 1px solid var(--schulthess-blue);
  padding: 0.35rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.partnership-logo-grid {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.partner-logo-box {
  background: transparent;
  border: 1.5px solid var(--schulthess-blue);
  padding: 0.8rem 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: auto;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--schulthess-blue);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(11, 74, 153, 0.05);
}

.partner-logo-box:hover {
  background: var(--schulthess-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 74, 153, 0.2);
}

.partner-logo-box h3 {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: inherit;
  font-weight: 700;
  margin: 0;
}

/* --- INTERACTIVE PRODUCT TABS (PRODUCTS PAGE) --- */
.products-hero {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.products-hero .heading-lg {
  color: var(--text-light);
}

.tabs-container {
  margin-top: -2rem;
  position: relative;
  z-index: 10;
  background: var(--bg-primary);
  padding-bottom: 4rem;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 0px;
  transition: all var(--transition-fast);
  min-width: 180px;
  text-align: center;
}

.tab-btn.active {
  background: var(--schulthess-blue);
  color: var(--text-light);
  border-color: var(--schulthess-blue);
}

.tab-btn:hover:not(.active) {
  border-color: var(--schulthess-blue);
}

@media (max-width: 768px) {
  .tabs-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Product Showcase Layout - Split Grid */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.product-gallery {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-placeholder-img {
  z-index: 2;
  text-align: center;
  color: var(--text-muted);
}

.product-placeholder-img svg {
  width: 90px;
  height: 90px;
  color: var(--border-color-dark);
  margin-bottom: 1rem;
}

.color-swatches {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--bg-primary);
  box-shadow: 0 0 0 1px var(--border-color-dark);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.swatch:hover, .swatch.active {
  transform: scale(1.15);
}

.swatch-snow { background-color: #ffffff; }
.swatch-stone { background-color: #9e978e; }
.swatch-carbon { background-color: #444241; }
.swatch-gold { background-color: #d4af37; }
.swatch-rose { background-color: #b76e79; }
.swatch-titan { background-color: #555d61; }

.product-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.model-series {
  color: var(--schulthess-blue);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-spec-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.spec-highlight-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1rem;
  text-align: center;
}

.spec-highlight-card .spec-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  line-height: 1.1;
}

.spec-highlight-card .spec-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

@media (max-width: 992px) {
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- TECHNICAL SPECIFICATION TABLES --- */
.spec-table-wrapper {
  margin-top: 3rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  overflow-hidden: true;
}

.spec-table-title {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.spec-table th, .spec-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.spec-table th {
  background: var(--bg-secondary);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.spec-table tr:nth-child(even) td {
  background: var(--bg-secondary);
}

.spec-table td.spec-param {
  font-weight: 600;
  color: var(--text-dark);
  width: 35%;
}

.spec-table td.spec-val {
  color: var(--text-muted);
}

/* --- PRICING SECTION --- */
.pricing-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.pricing-table-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--schulthess-blue);
}

.price-card.featured::before {
  content: 'DESIGNER FAVORITE';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--schulthess-blue);
  color: var(--text-light);
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price-header h3 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.price-header .price-series {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--schulthess-blue);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text-dark);
  line-height: 1.0;
  margin-bottom: 0.5rem;
}

.price-amount span {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: var(--text-muted);
}

.price-amount-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-features li svg {
  width: 16px;
  height: 16px;
  color: var(--schulthess-blue);
  flex-shrink: 0;
}

/* --- REFERENCES CARD GRID (NEW ADDITION) --- */
.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.reference-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reference-card .ref-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--schulthess-blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.reference-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.reference-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .references-grid {
    grid-template-columns: 1fr;
  }
}

/* --- HERITAGE TIMELINE (ABOUT PAGE) --- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 1px;
  background: var(--border-color-dark);
  top: 0;
  bottom: 0;
  left: 50%;
}

.timeline-item {
  padding: 1.5rem 2.5rem;
  position: relative;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  right: -6px;
  background-color: var(--bg-primary);
  border: 3px solid var(--schulthess-blue);
  top: 2rem;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
  text-align: right;
}

.right {
  left: 50%;
}

.right::after {
  left: -6px;
}

.timeline-content {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.timeline-date {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--schulthess-blue);
  line-height: 1.0;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.timeline-body {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .timeline::after {
    left: 15px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 15px;
  }
  .timeline-item::after {
    left: 9px;
    right: auto;
  }
  .left {
    text-align: left;
  }
  .right {
    left: 0%;
  }
}

/* --- FORMS & CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-group {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--schulthess-blue);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.info-value a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}

.info-value a:hover {
  color: var(--schulthess-blue);
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group-full {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color-dark);
  color: var(--text-dark);
  outline: none;
  border-radius: 0px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--schulthess-blue);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* --- GLOBAL FOOTER --- */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 3px solid var(--schulthess-blue);
  padding: 5rem 0 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: var(--text-light);
  line-height: 1;
}

.footer-logo-text span {
  color: var(--schulthess-blue);
}

.footer-tagline {
  color: #cccccc;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-col-title {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.25rem;
  display: inline-block;
}

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

.footer-links a {
  text-decoration: none;
  color: #cccccc;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--schulthess-blue);
}

.footer-partner-card {
  background: var(--bg-dark-accent);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-partner-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.footer-partner-card h4 {
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-partner-card p {
  font-size: 0.8rem;
  color: #cccccc;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #888888;
}

.swiss-made-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.6rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.swiss-cross {
  width: 12px;
  height: 12px;
  background: #ff0000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 8px;
  border-radius: 1px;
}

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

/* --- E-COMMERCE SHOPPING PAGES STYLES --- */

/* Utility & Layout tweaks */
.shop-body {
  background-color: var(--bg-secondary);
}

.announcement-bar {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 0.5rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1001;
  font-weight: 600;
  border-bottom: 1.5px solid var(--schulthess-blue);
}

.announcement-bar span {
  color: var(--schulthess-blue);
}

/* Nav Cart and Search */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-color-dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  background: var(--bg-primary);
  width: 150px;
  transition: width var(--transition-normal);
}

.search-input:focus {
  width: 220px;
  border-color: var(--schulthess-blue);
  outline: none;
}

.cart-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

.cart-icon-btn:hover {
  color: var(--schulthess-blue);
}

.cart-icon-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.cart-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--schulthess-blue);
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-primary);
}

/* Slideshow / Hero Slider */
.slideshow-container {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  margin-top: 80px; /* offset static nav */
}

.slideshow-container.has-announcement {
  margin-top: 0px; /* let flow guide */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(30, 29, 28, 0.85) 0%, rgba(30, 29, 28, 0.4) 60%, rgba(30, 29, 28, 0.1) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: var(--text-light);
  max-width: 600px;
  padding: 0 1.5rem;
}

.slide-tag {
  color: var(--schulthess-blue);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.slide-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.0;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.slide-descr {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 29, 28, 0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--schulthess-blue);
  border-color: var(--schulthess-blue);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.slider-arrow-left { left: 20px; }
.slider-arrow-right { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
}

.slider-dot.active {
  background: var(--schulthess-blue);
  transform: scale(1.2);
}

/* Shop Section */
.shop-section {
  padding: 4rem 0;
}

.shop-header {
  margin-bottom: 3rem;
  text-align: center;
}

/* Product filter tabs navigation */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-dark);
}

.filter-btn.active {
  color: var(--schulthess-blue);
  border-color: var(--schulthess-blue);
  background: var(--schulthess-blue-light);
}

/* Product Catalog Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.product-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--schulthess-blue);
}

/* Card Image & Badges */
.card-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1.1;
  background: #fbfbfb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .card-img {
  transform: scale(1.05);
}

.card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 3;
}

.badge-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-swiss {
  background: #ff0000;
  color: var(--text-light);
}

.badge-action {
  background: var(--schulthess-green);
  color: #1e1d1c;
}

.badge-new {
  background: var(--schulthess-blue);
  color: var(--text-light);
}

.quick-view-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 29, 28, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 4;
}

.product-card:hover .quick-view-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: var(--bg-primary);
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quick-view-btn:hover {
  background: var(--schulthess-blue);
  color: var(--text-light);
  border-color: var(--schulthess-blue);
}

/* Card details styling */
.card-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-top: 1px solid var(--border-color);
}

.card-category {
  font-size: 0.75rem;
  color: var(--schulthess-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.card-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.card-title:hover {
  color: var(--schulthess-blue);
}

.card-specs {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card-swatches-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.card-swatches {
  display: flex;
  gap: 0.4rem;
}

.card-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.1);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.card-swatch:hover, .card-swatch.active {
  transform: scale(1.25);
  border-color: var(--schulthess-blue);
}

.card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.card-price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-dark);
  line-height: 1;
}

.card-price-old {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.card-add-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
}

/* Shopping Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 29, 28, 0.4);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--bg-primary);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal) cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0;
}

.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close-btn:hover {
  color: var(--schulthess-blue);
}

/* Shipping Progress Indicator */
.cart-shipping-banner {
  background: var(--bg-secondary);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.8rem;
}

.cart-shipping-progress {
  width: 100%;
  height: 6px;
  background: var(--border-color);
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}

.cart-shipping-fill {
  height: 100%;
  background: var(--schulthess-blue);
  width: 0%;
  transition: width var(--transition-normal);
}

/* Cart List */
.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-empty-msg {
  text-align: center;
  color: var(--text-muted);
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cart-empty-msg svg {
  width: 48px;
  height: 48px;
  stroke: var(--border-color-dark);
}

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-img-box {
  width: 70px;
  height: 70px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-item-qty-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.qty-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  background: var(--border-color-dark);
}

.qty-val {
  font-size: 0.85rem;
  font-weight: 600;
  width: 20px;
  text-align: center;
}

.cart-item-price {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove:hover {
  color: #ff0000;
}

/* Cart Footer */
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.cart-summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

/* Product Detail Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 29, 28, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-container {
  background: var(--bg-primary);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.modal-close-btn:hover {
  color: var(--schulthess-blue);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.modal-gallery-box {
  background: #fbfbfb;
  border: 1px solid var(--border-color);
  aspect-ratio: 1/1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-gallery-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-info-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-specs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  margin: 0.5rem 0;
}

.modal-spec-item {
  font-size: 0.85rem;
}

.modal-spec-item span:first-child {
  font-weight: 700;
  color: var(--text-dark);
  margin-right: 0.5rem;
}

.modal-spec-item span:last-child {
  color: var(--text-muted);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--bg-dark-accent);
  color: var(--text-light);
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--schulthess-blue);
  transform: translateY(100px);
  opacity: 0;
  animation: slideInUp 0.3s forwards, fadeOut 0.3s 3.5s forwards;
}

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

/* --- HOMEPAGE SLIDESHOW REDESIGN --- */
.slideshow-container.home-slideshow {
  height: 620px;
}

.slide.slide-light {
  background-color: #fbfbfa !important;
  background-image: none !important;
}

.slide.slide-light::after {
  display: none;
}

.slide.slide-light .slide-content {
  color: #1e1d1c;
}

.slide.slide-light .slide-title {
  color: #1e1d1c;
}

.slide.slide-light .slide-descr {
  color: #555351;
}

.slide-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 3;
  position: relative;
}

.slide-split-grid.reverse-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.slide-media-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.slide-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

/* Slide 4 Leaf Elements */
.slide-leaf-wrapper {
  position: relative;
  padding-left: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.slide-leaf-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 85%;
  height: 85%;
  background-color: #e2ede4;
  z-index: 1;
  border-radius: 4px;
}

.slide-leaf-img {
  position: relative;
  z-index: 2;
  max-width: 85%;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 4px;
  display: block;
}

/* Slide 6 IoT Image */
.slide-iot-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.slide-iot-img {
  max-width: 95%;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  border-radius: 4px;
}

/* Radial Infographics CSS */
.infographic-container {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 1.5rem auto;
}

.infographic-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background-color: var(--schulthess-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
  box-shadow: 0 4px 15px rgba(26, 143, 229, 0.35);
  z-index: 10;
}

.infographic-center span {
  transform: rotate(-10deg);
  display: inline-block;
  padding: 0 5px;
}

.infographic-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90px;
  z-index: 5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.infographic-badge:hover {
  transform: scale(1.1);
}

.infographic-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e0dfdd;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.04);
  margin-bottom: 0.25rem;
  color: var(--schulthess-blue);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.infographic-badge:hover .infographic-badge-icon {
  background: var(--schulthess-blue);
  color: white;
  border-color: var(--schulthess-blue);
  transform: scale(1.25);
  box-shadow: 0 6px 15px rgba(26, 143, 229, 0.4);
}

.infographic-badge-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.infographic-badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #444241;
  line-height: 1.2;
  white-space: normal;
}

/* Badge position helpers */
.pos-top {
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}
.pos-top:hover {
  transform: translateX(-50%) scale(1.1);
}

.pos-right-top {
  top: 18%;
  right: 0%;
}

.pos-right-bottom {
  bottom: 18%;
  right: 0%;
}

.pos-bottom {
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
}
.pos-bottom:hover {
  transform: translateX(-50%) scale(1.1);
}

.pos-left {
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.pos-left:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Badge positions for Slide 4 Sustainability */
.pos-top-left {
  top: 8%;
  left: 5%;
}

.pos-top-right {
  top: 8%;
  right: 5%;
}

.pos-bottom-left {
  bottom: 22%;
  left: 0%;
}

.pos-bottom-right {
  bottom: 22%;
  right: 0%;
}

.pos-bottom-center {
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
}
.pos-bottom-center:hover {
  transform: translateX(-50%) scale(1.1);
}

/* Badge positions for Slide 6 IoT Solutions */
.pos-top-center {
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
}
.pos-top-center:hover {
  transform: translateX(-50%) scale(1.1);
}

.pos-right-center {
  top: 48%;
  right: -5%;
  transform: translateY(-50%);
}
.pos-right-center:hover {
  transform: translateY(-50%) scale(1.1);
}

.pos-bottom-right-iot {
  bottom: 10%;
  right: 12%;
}

.pos-bottom-left-iot {
  bottom: 10%;
  left: 12%;
}

.pos-left-center {
  top: 48%;
  left: -5%;
  transform: translateY(-50%);
}
.pos-left-center:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Slide 5 Large Title Typography style */
.slide-large-blue-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: #8bb7db;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Responsive adjustment for slideshow homepage */
@media (max-width: 992px) {
  .slideshow-container.home-slideshow {
    height: auto;
    min-height: 650px;
  }
  
  .slide-split-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
  }
  
  .slide-split-grid.reverse-layout {
    grid-template-columns: 1fr;
  }
  
  .slide-media-col {
    order: 2;
  }
  
  .slide-info-col {
    order: 1;
    align-items: center;
  }
  
  .slide-large-blue-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .slideshow-container.home-slideshow {
    height: auto;
    min-height: 700px;
  }
  
  .infographic-container {
    width: 250px;
    height: 250px;
  }
  
  .infographic-center {
    width: 80px;
    height: 80px;
    font-size: 0.7rem;
  }
  
  .infographic-badge {
    width: 70px;
  }
  
  .infographic-badge-icon {
    width: 32px;
    height: 32px;
  }
  
  .infographic-badge-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .infographic-badge-label {
    font-size: 0.55rem;
  }
  
  .slide-leaf-img, .slide-iot-img {
    max-height: 250px;
  }
}

/* --- SWISS-INSPIRED ANIMATION SYSTEM --- */

/* Scroll Reveal Base */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Reveal Left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Scroll Reveal Right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Scroll Reveal Scale */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Carousel Slide staggered entrance */
.slide .slide-tag,
.slide .slide-title,
.slide .slide-large-blue-title,
.slide .slide-descr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.slide.active .slide-title,
.slide.active .slide-large-blue-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.slide.active .slide-descr {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Premium Hovers */
.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hover-zoom:hover img {
  transform: scale(1.04);
}

/* Capabilities & Promo Cards micro-interactions */
.feature-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

/* Partnership card wrapper */
.partnership-card-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  margin-top: 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partnership-card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* Mobile Spacing Optimizations */
@media (max-width: 768px) {
  .section-padding {
    padding: 4.5rem 0;
  }
  .partnership-card-wrapper {
    padding: 2rem 1.25rem;
  }
}

