/* ==========================================================================
   TSI PROCESSORS - MODERN INDUSTRIAL DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #0A0A0C;
  --bg-medium: #111115;
  --bg-card: #17171E;
  --bg-card-hover: #1C1C24;

  /* Brand Colors */
  --gold: #F8B61D;
  --gold-hover: #E09F10;
  --gold-glow: rgba(248, 182, 29, 0.15);
  --gold-glow-strong: rgba(248, 182, 29, 0.35);

  /* Highlight Accent (Green) */
  --green: rgb(114, 191, 67);
  --green-glow: rgba(114, 191, 67, 0.15);
  --green-glow-strong: rgba(114, 191, 67, 0.35);

  /* Text Colors */
  --text-main: #F4F4F6;
  --text-muted: #A3A3B3;
  --text-dim: #717180;

  /* Structural Elements */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --border-gold: rgba(248, 182, 29, 0.25);
  --border-green: rgba(114, 191, 67, 0.25);

  /* Styling Tokens */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --font-sans: 'Manrope', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --shadow-main: 0 20px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(248, 182, 29, 0.1);
  --shadow-green-glow: 0 0 25px rgba(114, 191, 67, 0.1);

  /* Transition Constants */
  --transition-soft: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease;
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hover) var(--bg-dark);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

/* Grid & Layout Utilities */
.container {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.alt-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Base Elements Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Decorative Background Noise */
.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 75%);
  z-index: 1;
}

.gradient-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.glow-top-left {
  top: -100px;
  left: -100px;
  background: var(--gold-glow);
}

.glow-bottom-right {
  bottom: -150px;
  right: -100px;
  background: var(--green-glow);
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-soft);
}

.btn-primary {
  background-color: var(--gold);
  color: #0A0A0C;
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(248, 182, 29, 0.2);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--text-main);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-green {
  background-color: var(--green);
  color: #0A0A0C;
}

.btn-green:hover {
  background-color: rgb(98, 168, 54);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(114, 191, 67, 0.2);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 12, 0.8);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-soft);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-mark {
  /* background: linear-gradient(135deg, var(--gold) 0%, #D48E08 100%); */
  width: 90px;
  height: 42px;
  /* border-radius: var(--radius-sm); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-family: var(--font-display); */
  /* font-weight: 700;
  color: #0A0A0C; */
  /* font-size: 1.2rem; */
  /* box-shadow: 0 4px 12px rgba(248, 182, 29, 0.25); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  overflow-wrap: anywhere;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 6px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-soft);
}

.nav-menu a:hover {
  color: var(--text-main);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  background-color: rgba(248, 182, 29, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

.nav-cta-btn:hover {
  background-color: var(--gold);
  color: #0A0A0C;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: space-around;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero.hero-bg {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.28) 0%, rgba(10, 10, 12, 0.48) 30%, rgba(10, 10, 12, 0.88) 100%),
    url('./assets/hero-section.webp') center center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: rgba(114, 191, 67, 0.08);
  border: 1px solid var(--border-green);
  color: var(--green);
  border-radius: var(--radius-sm);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #FFF;
  overflow-wrap: anywhere;
}

.hero-title span {
  color: var(--gold);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-value.accented {
  color: var(--green);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Visual Panel */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.hero.hero-bg .hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.hero.hero-bg .hero-visual {
  display: none;
}

.hero.hero-bg .hero-content {
  max-width: 760px;
}

.hero-gallery {
  margin-top: 32px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(10, 10, 12, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero-gallery-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-gallery-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.hero-gallery-note {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.hero-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-main-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(23, 23, 30, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-main);
  backdrop-filter: blur(10px);
}

.hero-carousel-card {
  overflow: hidden;
}

.hero-poster-card {
  padding: 0;
  overflow: hidden;
  max-width: 520px;
  aspect-ratio: 1092 / 1536;
}

.hero-poster-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.card-header-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.badge-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.badge-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(248, 182, 29, 0.08);
  border: 1px solid var(--border-gold);
  padding: 4px 10px;
  border-radius: 99px;
  font-weight: 600;
}

.card-illustration {
  height: 200px;
  width: 100%;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at center, #1F1F27 0%, #15151B 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.spec-sheet-display {
  width: 80%;
  height: 60%;
  position: relative;
}

.spec-line {
  position: absolute;
  background-color: var(--border-hover);
}

.spec-line.horizontal {
  width: 100%;
  height: 1px;
}

.spec-line.vertical {
  width: 1px;
  height: 100%;
}

.spec-wave {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.spec-wave span {
  width: 8px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(248, 182, 29, 0.2) 100%);
  border-radius: 4px;
  animation: heightPulse 4s ease-in-out infinite;
}

.spec-wave span:nth-child(1) {
  height: 40%;
  animation-delay: 0.2s;
}

.spec-wave span:nth-child(2) {
  height: 75%;
  animation-delay: 0.6s;
}

.spec-wave span:nth-child(3) {
  height: 50%;
  animation-delay: 0.4s;
}

.spec-wave span:nth-child(4) {
  height: 85%;
  animation-delay: 0.8s;
}

.spec-wave span:nth-child(5) {
  height: 60%;
  animation-delay: 0.5s;
}

.card-footer-info {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.card-footer-title {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.card-footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-carousel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top, #1f1f27 0%, #15151b 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
}

.hero-carousel-slide {
  flex: 0 0 100%;
  /* min-height: 260px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 22px; */
  position: relative;
}

.hero-carousel-slide::after {
  content: '';
  position: absolute;
  inset: auto 18px 18px;
  height: 86px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 182, 29, 0) 0%, rgba(248, 182, 29, 0.08) 100%);
  pointer-events: none;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: fill;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-soft);
  flex-shrink: 0;
}

.hero-carousel-btn:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background: rgba(248, 182, 29, 0.06);
  transform: translateY(-1px);
}

.hero-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.hero-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, width 0.25s ease;
}

.hero-carousel-dot.is-active {
  width: 26px;
  background: var(--gold);
}

.hero-shape-deco {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
  animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes heightPulse {

  0%,
  100% {
    transform: scaleY(0.9);
  }

  50% {
    transform: scaleY(1.1);
    filter: brightness(1.15);
  }
}

/* ==========================================================================
   SECTION COMMON ELEMENTS
   ========================================================================== */

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #FFF;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   ABOUT PREVIEW SECTION
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.about-text-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.about-text-content p:last-child {
  margin-bottom: 0;
}

.about-cards-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-bar-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition-soft);
}

.info-bar-card:hover {
  transform: translateX(6px);
  border-color: var(--border-gold);
  background-color: var(--bg-card-hover);
}

.info-bar-card.accented:hover {
  border-color: var(--border-green);
}

.info-card-icon {
  /* background: rgba(255, 255, 255, 0.03); */
  /* border: 1px solid var(--border); */
  width: 48px;
  height: 48px;
  /* border-radius: var(--radius-sm); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 1.25rem; */
  /* color: var(--gold); */
  flex-shrink: 0;
  transition: var(--transition-soft);
}

/* .info-bar-card:hover .info-card-icon {
  background-color: var(--gold);
  color: #0A0A0C;
}

.info-bar-card.accented:hover .info-card-icon {
  background-color: var(--green);
  color: #0A0A0C;
} */

.info-card-detail h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: #FFF;
}

.info-card-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   CREATIVE SHOWCASE 1: ANATOMY EXPLORER
   ========================================================================== */

.explorer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: stretch;
}

/* Visualization Panel */
.explorer-visual-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-main);
  min-width: 0;
}

.anatomy-stack {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Controlled spacing to look exploded */
  position: relative;
  z-index: 2;
}

.anatomy-layer {
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: var(--transition-soft);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Specific Layer Colors */
.layer-finish-top {
  background: linear-gradient(90deg, #505F6E 0%, #2E3944 100%);
  color: #FFF;
  height: 24px;
}

.layer-primer-top {
  background: linear-gradient(90deg, #8A9A86 0%, #5E6F5B 100%);
  color: #FFF;
  height: 20px;
}

.layer-zinc-top {
  background: linear-gradient(90deg, #CFD2CD 0%, #A6A8A4 100%);
  color: #222;
  height: 22px;
}

.layer-core {
  background: linear-gradient(90deg, #4A4A4A 0%, #212121 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  height: 48px;
  font-weight: 700;
  font-size: 0.95rem;
}

.layer-zinc-bottom {
  background: linear-gradient(90deg, #CFD2CD 0%, #A6A8A4 100%);
  color: #222;
  height: 22px;
}

.layer-primer-bottom {
  background: linear-gradient(90deg, #8A9A86 0%, #5E6F5B 100%);
  color: #FFF;
  height: 20px;
}

.layer-back {
  background: linear-gradient(90deg, #5C5454 0%, #3B3535 100%);
  color: #FFF;
  height: 24px;
}

.layer-thickness {
  font-family: var(--font-display);
  font-size: 0.75rem;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Hover/Active states for Layers */
.anatomy-layer:hover {
  transform: translateX(12px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.anatomy-layer.active {
  transform: translateX(20px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow-strong);
}

/* Layer Explorer Details Panel */
.explorer-detail-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.detail-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: var(--transition-soft);
  box-shadow: var(--shadow-main);
}

.detail-card.accented {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.detail-header {
  margin-bottom: 20px;
}

.detail-layer-index {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}

.detail-title {
  font-size: 1.6rem;
  color: #FFF;
}

.detail-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.detail-spec-item {
  display: flex;
  flex-direction: column;
}

.detail-spec-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.detail-spec-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.detail-spec-val.green {
  color: var(--green);
}

.explorer-tip {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.explorer-tip svg {
  color: var(--gold);
}

/* ==========================================================================
   CREATIVE SHOWCASE 2: PRODUCT COLOR SWATCH CUSTOMIZER
   ========================================================================== */

.customizer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: stretch;
}

/* Selector Card */
.customizer-selector-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-main);
  min-width: 0;
}

.customizer-heading {
  margin-bottom: 24px;
}

.customizer-heading h3 {
  font-size: 1.35rem;
  color: #FFF;
  margin-bottom: 8px;
}

.customizer-heading p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.swatch-picker-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.swatch-btn {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-soft);
  text-align: left;
}

.swatch-btn:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.swatch-btn.active {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.swatch-color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.swatch-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.swatch-btn.active .swatch-name {
  color: #FFF;
}

/* Colors Hex definitions */
.color-reliance-green {
  background-color: #386A20;
}

.color-royal-blue {
  background-color: #0F4C81;
}

.color-seco-red {
  background-color: #8C1C13;
}

.color-off-white {
  background-color: #E6E8E6;
}

.color-grey-wrinkle {
  background-color: #555E68;
}

.color-graphite-grey {
  background-color: #353D42;
}

.color-burgundy-red {
  background-color: #581C25;
}

.color-light-blue {
  background-color: #4A90E2;
}

/* Customizer SVG Preview Canvas */
.customizer-preview-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-main);
  min-height: 480px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.preview-canvas {
  width: 100%;
  max-width: 480px;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.preview-canvas img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
  display: block;
  object-fit: contain;
  transition: transform 0.28s ease, filter 0.28s ease, opacity 0.18s ease;
  transform-origin: center center;
  will-change: transform;
}

.customizer-preview-panel.is-zoomed {
  overflow: visible;
  z-index: 5;
  box-shadow: 0 0 0 1px rgba(248, 182, 29, 0.2), 0 20px 50px rgba(0, 0, 0, 0.45);
  transform: scale(1.02);
}

.customizer-preview-panel.is-zoomed .preview-canvas {
  max-width: 560px;
}

.customizer-preview-panel.is-zoomed .preview-canvas img {
  transform: scale(1.12);
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.5));
}

.swatch-image-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 5, 8, 0.82);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 9999;
}

.swatch-image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.swatch-image-modal-backdrop {
  position: absolute;
  inset: 0;
}

.swatch-image-modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(88vh, 900px);
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--border-gold);
  background: linear-gradient(180deg, rgba(13, 13, 17, 0.98), rgba(8, 9, 12, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(248, 182, 29, 0.08);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.swatch-image-modal-panel img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.swatch-image-modal-copy h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 4px;
}

.swatch-image-modal-copy p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.swatch-image-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-soft);
  z-index: 2;
}

.swatch-image-modal-close:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background: rgba(248, 182, 29, 0.08);
}

body.modal-open {
  overflow: hidden;
}

.preview-title-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 99px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  z-index: 3;
}

/* Surface Protection Film Comparison */
.surface-film-section {
  position: relative;
}

.surface-film-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.surface-film-copy-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-main);
}

.surface-film-copy-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
}

.surface-film-copy-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.surface-film-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.surface-film-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.surface-film-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(248, 182, 29, 0.12);
}

.surface-film-compare {
  min-width: 0;
}

.surface-film-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-height: 520px;
  --surface-film-base-scale: 1.03;
  --surface-film-base-shift: -1.5%;
  --surface-film-overlay-scale: 1.11;
  --surface-film-overlay-shift: -1%;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top, rgba(248, 182, 29, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
  box-shadow: var(--shadow-main);
}

.surface-film-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 45%),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.05), transparent 32%);
  pointer-events: none;
  z-index: 1;
}

.surface-film-base,
.surface-film-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.surface-film-base {
  z-index: 1;

  transform: translateY(var(--surface-film-base-shift)) scale(var(--surface-film-base-scale));
}

.surface-film-overlay {
  transform: translateY(var(--surface-film-overlay-shift)) scale(var(--surface-film-overlay-scale));
}

.surface-film-overlay-clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 45% 0 0);
  z-index: 2;
  pointer-events: none;
}

.surface-film-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 0 1px rgba(248, 182, 29, 0.12);
  z-index: 3;
}

.surface-film-handle::before,
.surface-film-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(248, 182, 29, 0.12);
  transform: translateX(-50%);
}

.surface-film-handle::before {
  top: 18px;
}

.surface-film-handle::after {
  bottom: 18px;
}

.surface-film-tag {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 99px;
  border: 1px solid rgba(248, 182, 29, 0.25);
  background: rgba(10, 12, 16, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.surface-film-tag.left {
  left: 18px;
}

.surface-film-tag.right {
  right: 18px;
}

.customizer-desc-bar {
  margin-top: 30px;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.customizer-color-info h4 {
  font-size: 1.15rem;
  color: #FFF;
  margin-bottom: 2px;
}

.customizer-color-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.customizer-custom-hint {
  font-size: 0.8rem;
  background-color: rgba(114, 191, 67, 0.08);
  border: 1px solid var(--border-green);
  color: var(--green);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.customizer-custom-hint span {
  width: 5px;
  height: 5px;
  background-color: var(--green);
  border-radius: 50%;
}

/* ==========================================================================
   PRODUCTS DISPLAY SYSTEM (Tile, Corrugated, etc.)
   ========================================================================== */

.products-slider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-show-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-soft);
  box-shadow: var(--shadow-main);
}

.product-show-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.product-show-card.premium:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-green-glow);
}

.warranty-grid {
  margin-top: 28px;
}

.warranty-card {
  min-height: 340px;
}

.warranty-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 99px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.warranty-pill.premium {
  border-color: var(--border-gold);
  color: var(--gold);
  background: rgba(248, 182, 29, 0.08);
}

.warranty-highlight-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.warranty-highlight {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow: var(--shadow-main);
}

.warranty-highlight-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.warranty-highlight-label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-icon-shell {
  width: 52px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition-soft);
}

/* .product-show-card:hover .product-icon-shell {
  background-color: var(--gold);
  color: #0A0A0C;
}

.product-show-card.premium .product-icon-shell {
  color: var(--green);
}

.product-show-card.premium:hover .product-icon-shell {
  background-color: var(--green);
  color: #0A0A0C;
} */

.product-card-body h3 {
  font-size: 1.35rem;
  color: #FFF;
  margin-bottom: 12px;
}

.product-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-specs-list {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.product-spec-row .label {
  color: var(--text-dim);
}

.product-spec-row .value {
  color: var(--text-main);
  font-weight: 600;
}

.product-spec-row .value.green-text {
  color: var(--green);
}

/* ==========================================================================
   RMP vs SUPER DURABLE RMP COMPARISON
   ========================================================================== */

.rmp-comparison-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-main);
  min-width: 0;
}

.rmp-head-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  gap: 20px;
}

.rmp-header-left h3 {
  font-size: 1.6rem;
  color: #FFF;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.rmp-header-left p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.rmp-toggle-box {
  display: flex;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: var(--radius-md);
  flex-wrap: wrap;
  max-width: 100%;
}

.rmp-toggle-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-soft);
  white-space: normal;
}

.rmp-toggle-btn.active {
  background-color: rgba(255, 255, 255, 0.06);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rmp-toggle-btn.active.special {
  background-color: rgba(114, 191, 67, 0.1);
  color: var(--green);
  border: 1px solid var(--border-green);
}

/* RMP Metric Grid */
.rmp-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.metric-bar-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.metric-row-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.metric-name {
  color: var(--text-main);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.metric-val-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.metric-val-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  overflow-wrap: anywhere;
}

.metric-val-num.green-text {
  color: var(--green);
}

.metric-bar-track {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.metric-bar-fill {
  height: 100%;
  width: 50%;
  /* JS controlled */
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-hover) 100%);
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.metric-bar-fill.green-fill {
  background: linear-gradient(90deg, var(--green) 0%, rgb(98, 168, 54) 100%);
}

.rmp-badge-banner {
  margin-top: 40px;
  background: linear-gradient(90deg, rgba(248, 182, 29, 0.04) 0%, rgba(114, 191, 67, 0.04) 100%);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.rmp-banner-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.rmp-banner-text strong {
  color: var(--text-main);
}

.rmp-banner-tag {
  background-color: rgba(114, 191, 67, 0.08);
  border: 1px solid var(--border-green);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   INTERACTIVE MANUFACTURING JOURNEY (STEPPER)
   ========================================================================== */

.manufacturing-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stepper-header-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 60px 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.stepper-header-track::-webkit-scrollbar {
  display: none;
}

.stepper-line-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--border);
  z-index: 1;
  transform: translateY(-50%);
}

.stepper-line-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background-color: var(--gold);
  z-index: 2;
  transform: translateY(-50%);
  width: 0%;
  /* JS controlled */
  transition: width 0.5s ease;
}

.step-node {
  background-color: var(--bg-card);
  border: 2px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: var(--transition-soft);
}

.step-node:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(248, 182, 29, 0.2);
}

.step-node.completed {
  border-color: var(--green);
  color: var(--green);
  background-color: var(--bg-dark);
}

.step-node.active {
  border-color: var(--gold);
  color: #0A0A0C;
  background-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow-strong);
  transform: scale(1.15);
}

.step-label {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-dim);
  transition: var(--transition-fast);
}

.step-node.active .step-label {
  color: var(--gold);
}

.step-node.completed .step-label {
  color: var(--green);
}

.stepper-info-display {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-main);
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 30px;
  align-items: center;
  min-height: 180px;
}

.display-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-glow-strong);
  line-height: 1;
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 20px;
}

.display-step-content h4 {
  font-size: 1.4rem;
  color: #FFF;
  margin-bottom: 8px;
}

.display-step-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   QUALITY TESTING & SPECIFICATIONS
   ========================================================================== */

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-mini-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-soft);
}

.feature-mini-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.feature-mini-card.completed:hover {
  border-color: var(--border-green);
}

.feature-mini-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.feature-mini-card.completed .feature-mini-icon {
  color: var(--green);
}

.feature-mini-card h3 {
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 8px;
}

.feature-mini-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Specifications Grid */
.quality-spec-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.spec-strip-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition-soft);
}

.spec-strip-card:hover {
  border-color: var(--border-gold);
  background-color: var(--bg-card-hover);
  transform: translateY(-2px);
}

.spec-strip-card.green-theme:hover {
  border-color: var(--border-green);
}

.spec-strip-card .val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.spec-strip-card.green-theme .val {
  color: var(--green);
}

.spec-strip-card .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Quality Testing Dials Section */
.testing-dials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.dial-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dial-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.dial-card.green-dial .dial-icon {
  color: var(--green);
}

.dial-card h4 {
  font-size: 0.85rem;
  color: #FFF;
  margin-bottom: 4px;
}

.dial-card p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Industries Stepper Wrap */
.industries-shell {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.industries-shell h3 {
  font-size: 1.3rem;
  color: #FFF;
  margin-bottom: 20px;
}

.industry-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-soft);
  overflow: visible;
  cursor: default;
  outline: none;
}

.industry-chip:hover {
  border-color: var(--border-gold);
  color: var(--gold);
  background-color: rgba(248, 182, 29, 0.04);
}

.industry-chip:focus-visible {
  border-color: var(--border-gold);
  color: var(--gold);
  box-shadow: 0 0 0 3px rgba(248, 182, 29, 0.15);
}

.industry-chip-popover {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translate(-50%, 8px);
  width: 180px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(248, 182, 29, 0.28);
  border-radius: 16px;
  background: rgba(10, 12, 16, 0.98);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 10;
}

.industry-chip-popover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -6px;
  width: 12px;
  height: 12px;
  background: rgba(10, 12, 16, 0.98);
  border-left: 1px solid rgba(248, 182, 29, 0.28);
  border-top: 1px solid rgba(248, 182, 29, 0.28);
  transform: translateX(-50%) rotate(45deg);
}

.industry-chip-popover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  /* padding: 8px; */
}

.industry-chip-popover span {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--text-muted);
  text-align: center;
}

.industry-chip:hover .industry-chip-popover,
.industry-chip:focus-visible .industry-chip-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.contact-intro {
  margin-bottom: 30px;
}

.contact-intro h2 {
  font-size: 2.2rem;
  color: #FFF;
  margin-bottom: 14px;
}

.contact-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-info-block span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 700;
}

.contact-info-block strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-top: 2px;
}

/* Form Styling */
.contact-form-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-main);
  min-width: 0;
}

.contact-form-panel h3 {
  font-size: 1.4rem;
  color: #FFF;
  margin-bottom: 8px;
}

.contact-form-panel p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  min-width: 0;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-soft);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  background-color: rgba(0, 0, 0, 0.4);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group-full {
  margin-bottom: 24px;
}

.form-btn {
  width: 100%;
  padding: 16px;
}

.form-status {
  margin-top: 16px;
  min-height: 1.4em;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.form-status.is-success {
  color: #7ee08a;
}

.form-status.is-error {
  color: #ff9b9b;
}

.form-btn.is-loading {
  opacity: 0.75;
  cursor: progress;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
  background-color: #060608;
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.6;
  min-width: 0;
}

.footer-links-col h3,
.footer-contact-col h3 {
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul li a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-bottom-links a {
  margin-left: 24px;
}

.footer-bottom-links a:hover {
  color: var(--text-muted);
}

/* ==========================================================================
   404 ERROR PAGE SPECIFICS
   ========================================================================== */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-dark);
}

.error-container {
  width: min(100% - 32px, 620px);
  text-align: center;
  position: relative;
  z-index: 10;
}

.error-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-main);
  backdrop-filter: blur(10px);
}

.error-icon-visual {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  border: 2px dashed var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--gold);
  position: relative;
  animation: rotateGear 12s linear infinite;
}

.error-icon-visual::after {
  content: '404';
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: #FFF;
}

@keyframes rotateGear {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.error-card h1 {
  font-size: 2rem;
  color: #FFF;
  margin-bottom: 12px;
}

.error-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.error-card .btn-primary {
  min-width: 180px;
}

/* ==========================================================================
   SCROLL REVEAL UTILITIES
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats-strip {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-gallery {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    margin-top: 20px;
  }

  .hero-main-card {
    padding: 24px;
  }

  .hero-carousel-slide {
    min-height: 220px;
    padding: 16px;
  }

  .hero-carousel-slide img {
    max-height: 180px;
  }

  .hero-carousel-controls {
    gap: 10px;
  }

  .about-grid,
  .explorer-grid,
  .customizer-grid,
  .surface-film-grid,
  .contact-layout,
  .warranty-construction-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .explorer-detail-panel,
  .customizer-selector-panel {
    order: 2;
  }

  .explorer-visual-panel,
  .customizer-preview-panel {
    order: 1;
  }

  .products-slider-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .warranty-construction-card,
  .warranty-construction-panel {
    padding: 30px;
  }

  .warranty-highlight-bar {
    grid-template-columns: 1fr;
  }

  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-spec-grid,
  .testing-dials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .surface-film-stage {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    inset: 80px 0 0 0;
    width: 100%;
    height: calc(100dvh - 80px);
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 20px 16px 24px;
    gap: 12px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-soft);
    border-top: 1px solid var(--border);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: none;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 1rem;
    color: var(--text-main);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    margin-top: 4px;
  }

  .site-header.menu-open {
    background-color: var(--bg-dark);
    z-index: 1002;
  }

  .stepper-header-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 8px;
    justify-content: unset;
    padding: 18px 0 8px;
    overflow: visible;
  }

  .stepper-line-bg,
  .stepper-line-progress {
    display: none;
  }

  .step-node {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    font-size: 0.82rem;
    margin: 0 auto 24px;
  }

  .step-node::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    width: 92px;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.64rem;
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
  }

  .step-node.active::after {
    color: var(--gold);
  }

  .step-node.completed::after {
    color: var(--green);
  }

  .step-label {
    display: none;
  }

  .surface-film-stage {
    min-height: 360px;
  }

  .surface-film-copy-card {
    padding: 24px;
  }

  .manufacturing-container {
    gap: 24px;
  }

  .stepper-info-display {
    padding: 24px;
    gap: 20px;
    min-height: 0;
    margin-top: 6px;
  }

  .display-step-num {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 16px;
  }

  .stepper-info-display {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sales-network-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 28px;
  }

  .sales-network-list {
    order: 1;
  }

  .map-wrapper {
    display: none;
  }

  .map-tooltip {
    display: none;
  }

  .sales-network-list {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
    display: grid;
    gap: 12px;
  }

  .rmp-head-block {
    flex-direction: column;
    align-items: stretch;
  }

  .rmp-toggle-box {
    width: 100%;
  }

  .rmp-toggle-btn {
    flex: 1 1 160px;
    padding: 10px 14px;
  }

  .rmp-metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-row-meta {
    align-items: flex-start;
    gap: 10px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand-section p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links a {
    margin: 0 12px;
  }
}

@media (max-width: 600px) {
  .hero-stats-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-gallery {
    padding: 14px;
  }

  .hero-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-carousel-btn {
    width: 38px;
    height: 38px;
  }

  .hero-carousel-dot.is-active {
    width: 22px;
  }

  .products-slider-grid,
  .why-features-grid,
  .quality-spec-grid,
  .testing-dials-grid {
    grid-template-columns: 1fr;
  }

  .swatch-picker-list {
    grid-template-columns: 1fr;
  }

  .stepper-header-track {
    padding: 24px 4px 50px;
  }

  .step-node {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .step-label {
    top: 42px;
    font-size: 0.58rem;
    max-width: 56px;
  }

  .stepper-info-display {
    padding: 20px;
  }

  .map-wrapper {
    aspect-ratio: 1 / 1.1;
    padding: 12px;
  }

  .map-pointer {
    width: 20px;
    height: 20px;
  }

  .pointer-dot {
    width: 8px;
    height: 8px;
  }

  .map-pointer {
    opacity: 0.85;
  }

  .contact-form-panel {
    padding: 24px;
  }

  .rmp-comparison-panel {
    padding: 24px;
  }

  .rmp-badge-banner {
    padding: 14px 16px;
  }

  .rmp-banner-tag {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 20px, 1200px);
  }

  .nav-shell {
    gap: 8px;
    height: 72px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo-mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .brand-title {
    font-size: 1rem;
    line-height: 1.05;
  }

  .brand-subtitle {
    font-size: 0.67rem;
  }

  .nav-menu {
    inset: 72px 0 0 0;
    height: calc(100dvh - 72px);
    max-height: none;
    padding: 16px 12px 20px;
    gap: 10px;
  }

  .nav-menu a {
    padding: 12px 14px;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .nav-cta-btn {
    padding: 12px 14px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-subpage {
    padding: 64px 0 48px;
  }

  .contact-intro h2 {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .contact-intro p {
    font-size: 0.95rem;
  }

  .contact-form-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .contact-form-panel h3 {
    font-size: 1.2rem;
  }

  .contact-form-panel p {
    margin-bottom: 20px;
    font-size: 0.85rem;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .form-btn {
    padding: 14px;
  }

  .form-status {
    font-size: 0.86rem;
  }

  .rmp-comparison-panel {
    padding: 18px;
  }

  .rmp-head-block {
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .rmp-toggle-btn {
    flex: 1 1 100%;
    text-align: center;
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .rmp-toggle-box {
    gap: 4px;
  }

  .rmp-metrics-grid {
    gap: 18px;
  }

  .metric-name,
  .metric-val-num {
    font-size: 0.85rem;
  }

  .error-card .btn-primary {
    min-width: 0;
    width: 100%;
  }

  .stepper-header-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px 0 4px;
    gap: 12px 6px;
  }

  .step-node {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
    margin-bottom: 22px;
  }

  .step-node::after {
    width: 84px;
    font-size: 0.58rem;
  }

  .stepper-info-display {
    padding: 18px;
  }

  .display-step-num {
    font-size: 3rem;
    padding-bottom: 12px;
  }

  .map-wrapper {
    display: none;
  }

  .map-tooltip {
    display: none;
  }

  .network-node-card {
    padding: 16px;
  }
}

@media (min-width: 1600px) {
  .container {
    width: min(100% - 80px, 1360px);
  }

  .section {
    padding: 120px 0;
  }
}

/* ==========================================================================
   TSI PROCESSORS - SPA ROUTING & PAGE VIEWS STYLING
   ========================================================================== */

/* Active Navigation State */
.nav-menu a.active {
  color: var(--text-main);
}

.nav-menu a.active::after {
  width: 100%;
}

/* Page View States */
.page-view {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Subpage Hero Styles */
.hero-subpage {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-subpage .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFF;
  margin-top: 10px;
}

.warranty-hero .section-desc {
  max-width: 760px;
}

.warranty-construction-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.warranty-construction-card,
.warranty-construction-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%);
  box-shadow: var(--shadow-main);
  backdrop-filter: blur(10px);
}

.warranty-construction-card {
  padding: 38px;
}

.construction-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid var(--border-gold);
  background: rgba(248, 182, 29, 0.08);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.construction-icon-visual {
  width: 110px;
  height: 110px;
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  border: 2px dashed var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
  animation: rotateGear 12s linear infinite;
}

.construction-icon-visual::after {
  content: 'WIP';
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFF;
}

.warranty-construction-card h2 {
  color: #FFF;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.warranty-construction-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.construction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.warranty-construction-panel {
  padding: 34px;
}

.warranty-construction-panel h3 {
  color: #FFF;
  font-size: 1.5rem;
  margin: 10px 0 22px;
}

.construction-feature-list {
  display: grid;
  gap: 16px;
}

.construction-feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.construction-feature-index {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(248, 182, 29, 0.08);
}

.construction-feature-card h4 {
  color: #FFF;
  font-size: 1.02rem;
  margin-bottom: 5px;
}

.construction-feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.construction-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(114, 191, 67, 0.28);
  background: rgba(114, 191, 67, 0.06);
  color: var(--text-muted);
  line-height: 1.6;
}

.construction-note strong {
  color: var(--green);
}

/* ==========================================================================
   ABOUT US PAGE LAYOUTS
   ========================================================================== */

.about-detailed-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

.about-main-text h2 {
  font-size: 1.8rem;
  color: #FFF;
  margin-bottom: 20px;
}

.about-main-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.vm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-soft);
}

.vm-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.vm-card h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accent-fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-soft);
}

.accent-fact-card.green-fact {
  border-color: var(--border-green);
  box-shadow: var(--shadow-green-glow);
}

.accent-fact-card:hover {
  transform: translateY(-4px);
}

.fact-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.fact-lbl {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition-soft);
}

.value-card:hover {
  border-color: var(--border-hover);
  background-color: var(--bg-card-hover);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.2rem;
  color: #FFF;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Specs Data Table */
.table-container {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  margin-top: 40px;
}

.specs-data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.specs-data-table th,
.specs-data-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.specs-data-table th {
  background-color: rgba(255, 255, 255, 0.02);
  color: #FFF;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.specs-data-table tbody tr:last-child td {
  border-bottom: none;
}

.specs-data-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.01);
}

/* Sales Network Layout */
.sales-network-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  margin-top: 40px;
  align-items: stretch;
}

.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 612 / 696;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.map-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Map Loading Placeholder */
.map-loading-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-family: var(--font-display);
}

/* SVG State Styling */
.map-container svg path {
  fill: rgba(255, 255, 255, 0.01);
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1.2;
  transition: fill 0.3s ease, stroke 0.3s ease, stroke-width 0.3s ease;
}

/* Active coverage states */
.map-container svg path#mh,
.map-container svg path#mp,
.map-container svg path#gj,
.map-container svg path#ct {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(255, 255, 255, 0.16);
}

/* State Hover Highlights */
.map-container svg path:hover,
.map-container svg path.highlighted {
  fill: rgba(248, 182, 29, 0.06);
  stroke: var(--gold);
  stroke-width: 1.6;
  cursor: pointer;
}

/* Overlay Pointers */
.map-pointer {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-soft);
}

.pointer-dot {
  width: 10px;
  height: 10px;
  background-color: var(--gold);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px var(--gold);
  transition: var(--transition-soft);
}

.pointer-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.35;
  animation: map-pulse 2s infinite ease-out;
  z-index: 1;
  pointer-events: none;
}

@keyframes map-pulse {
  0% {
    transform: scale(0.4);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* Pointer Hover/Active states */
.map-pointer:hover .pointer-dot,
.map-pointer.active .pointer-dot {
  transform: scale(1.4);
  background-color: #FFF;
  box-shadow: 0 0 15px #FFF, 0 0 25px var(--gold);
}

.map-pointer:hover .pointer-pulse,
.map-pointer.active .pointer-pulse {
  animation: map-pulse 1.2s infinite ease-out;
  opacity: 0.5;
}

/* Dynamic Tooltip */
.map-tooltip {
  position: absolute;
  background: rgba(13, 13, 17, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: min(280px, calc(100vw - 40px));
  min-width: 0;
  max-width: 280px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -100%) translateY(-15px);
  transition: opacity 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-tooltip.visible {
  opacity: 1;
  transform: translate(-50%, -100%) translateY(-10px);
}

.tooltip-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
  margin: 0;
}

.tooltip-tag {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(248, 182, 29, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
  margin: 2px 0;
  border: 1px solid var(--border-gold);
}

.tooltip-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Branch List styling */
.sales-network-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hover) var(--bg-dark);
}

.sales-network-list::-webkit-scrollbar {
  width: 6px;
}

.sales-network-list::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

.sales-network-list::-webkit-scrollbar-thumb {
  background-color: var(--border-hover);
  border-radius: 3px;
}

.network-node-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition-soft);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.network-node-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: transparent;
  transition: var(--transition-soft);
}

.network-node-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
  background-color: var(--bg-card-hover);
}

.network-node-card.active {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(248, 182, 29, 0.03) 100%);
}

.network-node-card.active::before {
  background-color: var(--gold);
}

.network-node-card h3 {
  font-size: 1.05rem;
  color: #FFF;
  margin-bottom: 2px;
}

.network-node-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 4px;
}

.node-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-dim);
}

.network-node-card.active .node-tag {
  background-color: rgba(248, 182, 29, 0.08);
  border-color: var(--border-gold);
  color: var(--gold);
}

/* ==========================================================================
   INTERACTIVE 3D PRODUCT CONFIGURATOR
   ========================================================================== */

.configurator-3d-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

/* 3D Canvas Visual Panel */
.configurator-canvas-panel {
  background: var(--bg-medium);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.canvas-loading {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.9);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: var(--radius-lg);
  transition: opacity 0.4s ease;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spinnerRotate 1s linear infinite;
}

@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

.canvas-loading span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.canvas-wrapper {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 50% 50%, #17171e 0%, #0a0a0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.webgl-canvas {
  width: 100%;
  height: 100%;
  outline: none;
  cursor: grab;
}

.webgl-canvas:active {
  cursor: grabbing;
}

.canvas-instructions {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Legend Stack Panel */
.legend-panel {
  width: 100%;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.legend-header {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legend-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: default;
  transition: var(--transition-fast);
}

.legend-item.highlighted {
  color: #FFF;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.legend-item.highlighted-active {
  color: var(--gold);
  background: rgba(248, 182, 29, 0.05);
  border-color: var(--border-gold);
}

.legend-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Controls Panel */
.configurator-controls-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.config-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-soft);
}

.config-section:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.config-section-compact {
  padding: 0 10px;
}

.config-section h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 16px;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
  line-height: 1.2;
}

/* Profile Selector Grid */
.profile-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.config-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-soft);
  color: var(--text-muted);
}

.config-btn span {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.config-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
  color: var(--text-main);
}

.config-btn.active {
  background: rgba(248, 182, 29, 0.05);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 12px rgba(248, 182, 29, 0.1);
}

/* Profile Wave Previews inside Buttons (CSS Drawings) */
.profile-preview {
  width: 100%;
  height: 20px;
  position: relative;
  opacity: 0.6;
}

.config-btn.active .profile-preview {
  opacity: 1;
}

/* Corrugated Wave preview CSS drawing */
.preview-wave {
  background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, var(--text-muted) 10px, var(--text-muted) 12px);
  mask-image: radial-gradient(circle, black, transparent);
  border-bottom: 2px dotted var(--text-muted);
}

.config-btn.active .preview-wave {
  border-bottom-color: var(--gold);
}

.preview-box {
  border-bottom: 2px solid var(--text-muted);
  box-shadow: inset 0 -4px 0 var(--text-dim);
}

.config-btn.active .preview-box {
  border-bottom-color: var(--gold);
  box-shadow: inset 0 -4px 0 var(--gold);
}

.preview-tile {
  background: radial-gradient(circle at 50% 100%, var(--text-muted) 40%, transparent 45%);
  background-size: 15px 20px;
  height: 15px;
}

.config-btn.active .preview-tile {
  background: radial-gradient(circle at 50% 100%, var(--gold) 40%, transparent 45%);
  background-size: 15px 20px;
}

/* Thickness Slider */
.thickness-slider-wrap {
  position: relative;
  padding: 10px 0 20px;
}

.config-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  margin-bottom: 12px;
}

.config-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  transition: transform 0.15s ease;
  border: 2px solid var(--bg-card);
}

.config-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-ticks-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}

.slider-ticks-labels span {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
}

.slider-ticks-labels span::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background-color: var(--border);
}

/* Spec Readout Card */
.spec-readout-card {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 14px;
}

.readout-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.readout-row:last-child {
  margin-bottom: 0;
}

.readout-label {
  color: var(--text-dim);
}

.readout-val {
  font-weight: 600;
  color: #FFF;
}

.readout-val.text-green {
  color: var(--green);
}

/* Finish Toggle Panel */
.finish-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.finish-options-grid .config-btn {
  padding: 12px 10px;
}

/* Custom Checkbox Toggle iOS Style */
.exploded-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-toggle {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--border);
  transition: .3s;
  border-radius: 24px;
}

.slider-toggle:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.toggle-switch input:checked+.slider-toggle {
  background-color: var(--green);
}

.toggle-switch input:checked+.slider-toggle:before {
  transform: translateX(20px);
}

.exploded-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.exploded-slider-container {
  padding-top: 10px;
  transition: opacity 0.3s ease;
}

.exploded-slider-container.disabled {
  opacity: 0.25;
  pointer-events: none;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 4px;
}

/* Auto-Rotate Checkbox Styling */
.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  user-select: none;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-box {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
  display: inline-block;
  position: relative;
  transition: var(--transition-fast);
}

.checkbox-label:hover .checkbox-box {
  border-color: var(--border-hover);
}

.checkbox-label input:checked+.checkbox-box {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input:checked+.checkbox-box:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0A0A0C;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Legend Color Dot for Finish Coat is dynamically updated in JS */
#legend-dot-finish {
  background-color: #386A20;
}

/* ==========================================================================
   RESPONSIVE DESIGN UPGRADES FOR 3D CONFIGURATOR
   ========================================================================== */

@media (max-width: 1100px) {
  .configurator-3d-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-detailed-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-vision-mission {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sales-network-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sales-network-list {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }

  .canvas-wrapper {
    height: 350px;
  }

  .legend-list {
    grid-template-columns: 1fr;
  }

  .construction-actions {
    flex-direction: column;
  }

  .construction-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .construction-feature-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .profile-options-grid {
    grid-template-columns: 1fr;
  }
}
