
/* CSS Variables - Brand Colors */
:root {
  --brand-1: #ffffff;        /* White */
  --brand-2: #808080;        /* Grey */
  --ink: #ffffff;            /* White text */
  --bg: #000000;             /* Dark background */
  --bg-secondary: #1c1c1e;  /* Secondary dark background */
  --bg-tertiary: #2c2c2e;   /* Tertiary dark background */
  --muted: #8e8e93;         /* Muted text */
  --border: #38383a;         /* Dark borders */
  --success: #30d158;        /* Apple green */
  --error: #ff3b30;          /* Apple red */
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --container: 1200px;
  --section-padding: 5rem 0;
  --border-radius: 12px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--ink);
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #000000 50%, #1a1a1a 75%, #000000 100%);
  background-attachment: fixed;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

body.loaded {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  min-height: 44px; /* Accessibility */
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--bg-tertiary);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.05);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

/* Header logo styling */
.header-logo {
  height: 40px !important;
  width: auto !important;
  margin-right: 10px !important;
  vertical-align: middle;
}

/* Header logo text styling */
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover .logo-text {
  color: var(--brand-2);
}

.logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Vertical YOYO in hero section */
.vertical-yoyo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.vertical-yoyo span {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 0.8;
  display: block;
}


/* Panoramic layout matching the image */
.panoramic-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.panoramic-left {
  flex: 1;
}

.panoramic-left h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.panoramic-left p {
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.panoramic-image {
  margin-top: 2rem;
}

.panoramic-image img {
  width: 100%;
  max-width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.panoramic-right {
  flex: 1;
  max-width: 400px;
}

.panoramic-right .series-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Responsive design for panoramic layout */
@media (max-width: 768px) {
  .panoramic-layout {
    flex-direction: column;
    gap: 2rem;
  }
  
  .panoramic-left h3 {
    font-size: 2rem;
  }
  
  .panoramic-image img {
    height: 300px;
  }
  
  .panoramic-right {
    max-width: 100%;
  }
}


/* Installation & Products Gallery */
.installation-gallery {
  padding: 4rem 0;
  background: var(--bg);
}

.gallery-showcase {
  margin-top: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item.featured {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.gallery-overlay p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.3;
}

/* Hover Effects */
.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Featured item special styling */
.gallery-item.featured:hover {
  transform: translateY(-12px) scale(1.03);
}

.gallery-item.featured .gallery-overlay h3 {
  font-size: 1.75rem;
}

.gallery-item.featured .gallery-overlay p {
  font-size: 1.1rem;
}

/* Staggered animation on load */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-item {
  opacity: 0;
  transform: translateY(30px);
  animation: gallerySlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Responsive gallery */
@media (max-width: 768px) {
  .installation-gallery {
    padding: 2rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 1rem;
  }
  
  .gallery-item.featured {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .gallery-image-container {
    height: 300px;
  }
  
  .gallery-overlay {
    padding: 1.5rem;
  }
  
  .gallery-overlay h3 {
    font-size: 1.5rem;
  }
  
  .gallery-item.featured .gallery-overlay h3 {
    font-size: 1.5rem;
  }
  
  .gallery-item.featured .gallery-overlay p {
    font-size: 1rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--brand-1);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(0, 122, 255, 0.3);
}

.nav-phone {
  background: var(--bg-tertiary);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.nav-phone:hover {
  background: var(--bg-secondary);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--ink);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(28, 28, 30, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}

.hero-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.hero-logo {
  flex-shrink: 0;
  max-width: 300px;
}

.hero-logo-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.hero-brand {
  flex-shrink: 0;
}

.hero-brand-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
}

.hero-brand-text.vertical-yoyo {
  display: flex;
  flex-direction: column;
  align-items: center;
  writing-mode: horizontal-tb;
}

.hero-brand-text.vertical-yoyo span {
  display: block;
  line-height: 0.8;
}

.hero-title-section {
  flex: 1;
}

.hero-title {
  color: var(--ink);
  margin-bottom: 1rem;
}

/* Header Logo Styling */
.logo {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

.logo-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Header and Navigation Styling */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--success);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--ink);
  margin: 3px 0;
  transition: var(--transition);
}


.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--muted);
  text-align: justify;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.badge {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--muted);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.badge:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: var(--muted);
  font-size: 1.125rem;
}

.rating-text {
  font-size: 0.875rem;
  color: var(--muted);
}

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

.hero-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* Section Styles */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--ink);
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Differentiators */
.differentiators {
  padding: var(--section-padding);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--ink);
  margin-bottom: 1rem;
}

/* Models Section */
.models {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(28, 28, 30, 0.8) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(28, 28, 30, 0.8) 100%);
}

.models-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.model-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2rem;
  border: none !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.model-card.infinity-ultra {
  border: none !important;
}

.model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.model-card:hover::before {
  transform: scaleX(1);
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.model-header {
  text-align: center;
  margin-bottom: 2rem;
}

.model-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  position: relative;
  display: none;
}

.elevator-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  border-radius: 12px;
  position: relative;
  animation: elevatorFloat 3s ease-in-out infinite;
}

.elevator-icon::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  right: 20%;
  bottom: 20%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.elevator-icon.wheelchair::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.elevator-icon.outdoor::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
}

@keyframes elevatorFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.model-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.passenger-count {
  display: inline-block;
  background: rgba(0, 122, 255, 0.1);
  color: var(--brand-1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.model-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateX(5px);
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon.gearless {
  background: var(--brand-1) !important;
}

.feature-icon.panoramic {
  background: var(--brand-1) !important;
}

.feature-icon.compact {
  background: var(--brand-1) !important;
}

.feature-icon.pitless {
  background: var(--brand-1) !important;
}

.feature-icon.spacious {
  background: var(--brand-1) !important;
}

.feature-icon.outdoor {
  background: var(--brand-1) !important;
}

.feature-item span {
  color: var(--muted);
  line-height: 1.5;
}

.model-class {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.class-header {
  text-align: center;
  margin-bottom: 2rem;
}

.class-header img {
  width: 100%;
  max-width: 450px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin: 0 auto 1rem;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.series-card {
  background: var(--bg-tertiary);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.series-card h4 {
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.capacity {
  color: var(--brand-1);
  font-weight: 600;
  margin-bottom: 1rem;
}

.specs {
  list-style: none;
  margin-bottom: 1.5rem;
}

.specs li {
  padding: 0.25rem 0;
  color: var(--muted);
}

.specs li:before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Process Section */
.process {
  padding: var(--section-padding);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--bg-tertiary);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  color: var(--ink);
  margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(28, 28, 30, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.benefits-grid-unified {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item-unified {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 80px;
  min-height: 80px;
}

.benefit-item-unified:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--brand-1);
}

.benefit-item-unified .benefit-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item-unified .benefit-content {
  flex: 1;
  overflow: hidden;
}

.benefit-item-unified .benefit-content h4 {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.benefit-item-unified .benefit-content p {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.3;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Benefit Icons */
.icon-oil { background: linear-gradient(135deg, #ffffff, #d0d0d0); }
.icon-screw { background: linear-gradient(135deg, #808080, #a0a0a0); }
.icon-gear { background: linear-gradient(135deg, #ffffff, #c0c0c0); }
.icon-pit { background: linear-gradient(135deg, #808080, #606060); }
.icon-machine { background: linear-gradient(135deg, #ffffff, #e0e0e0); }
.icon-shaft { background: linear-gradient(135deg, #808080, #505050); }
.icon-maintenance { background: linear-gradient(135deg, #ffffff, #b0b0b0); }
.icon-seamless { background: linear-gradient(135deg, #808080, #404040); }
.icon-installation { background: linear-gradient(135deg, #ffffff, #c0c0c0); }
.icon-safety { background: linear-gradient(135deg, #808080, #606060); }

.benefit-card h3 {
  color: var(--ink);
  margin-bottom: 1rem;
}

/* CTA Band */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--bg-secondary) 100%);
  color: var(--ink);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  color: var(--ink);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* FAQ Section */
.faq {
  padding: var(--section-padding);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--brand-1);
}

.faq-icon {
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-item[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-item[aria-expanded="true"] {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.faq-item[aria-expanded="true"] .faq-question {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.faq-item[aria-expanded="true"] .faq-answer {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item[aria-expanded="true"] .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 1.5rem 0;
}

/* Blog Preview */
.blog-preview {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(28, 28, 30, 0.8) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(28, 28, 30, 0.8) 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.blog-date {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--brand-1);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact {
  padding: var(--section-padding);
}

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

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  background: var(--bg-tertiary);
  color: var(--ink);
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-1);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
}

.form-status.success {
  background: rgba(48, 209, 88, 0.1);
  color: var(--success);
  border: 1px solid var(--success);
}

.form-status.error {
  background: rgba(255, 59, 48, 0.1);
  color: var(--error);
  border: 1px solid var(--error);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  color: white;
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--muted);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--ink);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  background: var(--bg-tertiary);
  color: var(--ink);
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  text-align: center;
}

.legal-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.copyright {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal[aria-hidden="false"] .modal-content {
  transform: scale(1);
}

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

.modal-header h2 {
  margin: 0;
  color: var(--ink);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  padding: 0.25rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-form .form-row {
  grid-template-columns: 1fr 1fr;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%);
    transition: var(--transition);
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .modal-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-content {
    padding: 0 0.5rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-header {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .hero-brand-text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 2rem;
  }
  
  .hero-logo-img {
    width: 180px;
    height: 180px;
  }
  
  .nav {
    padding: 0.8rem 0;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-top: 1px solid var(--border);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* Fix machine showcase for small mobile */
  .machine-showcase {
    padding: 3rem 0;
  }
  
  .machine-grid {
    display: grid !important;
    gap: 1.2rem !important;
    margin-top: 2rem !important;
  }
  
  .machine-item {
    padding: 0 !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
    position: static !important;
    transition: none !important;
    cursor: default !important;
  }
  
  .machine-image-container {
    max-width: 100% !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    height: 160px !important;
    overflow: hidden !important;
    position: static !important;
    aspect-ratio: unset !important;
  }
  
  .machine-image {
    height: 160px !important;
    min-height: 160px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    width: 100% !important;
    display: block !important;
    position: static !important;
  }
  
  .machine-overlay {
    margin-top: 0 !important;
    border-top: none !important;
    padding: 1.2rem !important;
    text-align: left !important;
    position: static !important;
    background: none !important;
    width: 100% !important;
  }
  
  .machine-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: #ffffff !important;
  }
  
  .machine-overlay p {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.9) !important;
  }
  
  .machine-overlay small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  /* Fix precision section for small mobile */
  .precision-content {
    gap: 3rem;
    padding: 0 0.5rem;
  }
  
  .precision-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }
  
  .precision-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .precision-features {
    gap: 1.5rem;
    padding: 0;
  }
  
  .precision-feature {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
  }
  
  .precision-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .precision-feature p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .precision-visual {
    height: 300px;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .arrow-container {
    width: 250px;
    height: 250px;
  }
  
  .arrow-image {
    max-width: 120%;
    max-height: 120%;
    opacity: 0.25;
  }
  
  .logo {
    gap: 0.8rem;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-tagline {
    font-size: 0.7rem;
  }
}

/* Apple-inspired Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.02);
    opacity: 0.8;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 122, 255, 0.3); }
  50% { box-shadow: 0 0 30px rgba(0, 122, 255, 0.6); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes wiggle {
  0%, 7% { transform: rotateZ(0); }
  15% { transform: rotateZ(-15deg); }
  20% { transform: rotateZ(10deg); }
  25% { transform: rotateZ(-10deg); }
  30% { transform: rotateZ(6deg); }
  35% { transform: rotateZ(-4deg); }
  40%, 100% { transform: rotateZ(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animation Classes */
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInDown {
  animation: fadeInDown 0.8s ease-out forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 1s ease-in-out infinite;
}

.animate-wiggle {
  animation: wiggle 0.5s ease-in-out;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

/* Scroll-triggered animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

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

/* Focus styles */
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.faq-question:focus {
  outline: none !important;
  box-shadow: none !important;
}

.faq-question:active {
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
}

.faq-item:focus-within {
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
}

.nav-link:focus {
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
}

.nav-link:active {
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
}

/* Loading states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Technical Specifications */
.tech-specs {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.spec-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.spec-category:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.spec-category h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  border-bottom: 2px solid var(--brand-primary);
  padding-bottom: 0.5rem;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:hover {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 1rem;
  margin: 0 -1rem;
}

.spec-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  min-width: 120px;
}

.spec-value {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
  text-align: right;
  flex: 1;
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .spec-category {
    padding: 1.5rem;
  }
  
  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .spec-value {
    text-align: left;
    margin-left: 0;
  }
  
  .spec-label {
    min-width: auto;
  }
}

/* Technical Showcase */
.tech-showcase {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.showcase-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-text {
  flex: 1;
  padding-right: 2rem;
}

.showcase-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.showcase-text p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.showcase-image {
  flex: 1;
  position: relative;
}

.showcase-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.showcase-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .showcase-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .showcase-text {
    padding-right: 0;
    order: 2;
  }
  
  .showcase-image {
    order: 1;
  }
  
  .showcase-text h3 {
    font-size: 2rem;
  }
  
  .showcase-text p {
    font-size: 1.1rem;
  }
  
  .showcase-image img {
    height: auto;
  }
}

/* Founder's Message Section */
.founders-message {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 50%, var(--bg) 100%);
  position: relative;
}

.founders-content-centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.founders-text .section-title {
  margin-bottom: 2rem;
}

.message-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: justify;
}

.message-content p {
  color: var(--ink);
  line-height: 1.7;
  font-size: 1.1rem;
  text-align: justify;
  font-style: normal;
  margin-bottom: 0;
}

.message-intro {
  font-size: 1.25rem !important;
  color: var(--ink) !important;
  font-weight: 500;
}

.compliance-section {
  padding: 4rem 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

/* Machine Showcase Section */
.machine-showcase {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.machine-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.machine-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  width: 100%;
}

.machine-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.machine-image-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.machine-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.machine-item:hover .machine-image {
  transform: scale(1.05);
}

.machine-overlay {
  position: static;
  background: none;
  padding: 1.5rem 0 0 0;
  color: var(--ink);
  text-align: center;
}

.machine-item:hover .machine-overlay {
  background: none;
}

.machine-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.machine-overlay p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

.machine-overlay small {
  font-size: 0.8rem;
  color: var(--muted);
}

.compliance-standards {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.compliance-standards h3 {
  color: var(--ink);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.standards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.standards-list li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  text-rendering: optimizeLegibility;
}



.philosophy {
  font-style: normal;
  color: var(--ink) !important;
  font-size: 1.15rem !important;
}

.closing {
  color: var(--ink) !important;
  font-weight: 500;
}

.signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-text {
  color: var(--ink) !important;
  font-size: 1.25rem !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.signature-title {
  color: #808080 !important;
  font-size: 1rem !important;
  font-weight: 500;
}

.founders-visual {
  position: sticky;
  top: 2rem;
}

.founder-portrait {
  text-align: center;
}

.portrait-frame {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  padding: 4px;
  position: relative;
  animation: portraitGlow 4s ease-in-out infinite;
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.initials {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes portraitGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
  }
}

.company-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.timeline-year {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

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

/* Section Navigation */
.section-navigation {
  padding: 2rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.prev-btn {
  justify-content: flex-start;
}

.next-btn {
  justify-content: flex-end;
}

.nav-icon {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: bold;
}

.nav-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-title {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
}

/* Precision Engineering Section */
.precision-engineering {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  position: relative;
  overflow: hidden;
}

.precision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.precision-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.precision-title:hover {
  color: var(--brand-1);
  transform: scale(1.02);
}

.precision-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.precision-subtitle:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.precision-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.precision-feature {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.precision-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.precision-feature:hover h4 {
  color: var(--brand-1);
  transform: scale(1.02);
}

.precision-feature:hover p {
  color: var(--ink);
}

.precision-feature h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.precision-feature p {
  color: var(--muted);
  line-height: 1.5;
  transition: all 0.3s ease;
}

.precision-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-image {
  max-width: 150%;
  max-height: 150%;
  width: auto;
  height: auto;
  opacity: 0.1;
  transition: all 0.3s ease;
  animation: slideUpFromBottom 3s ease-out infinite;
}

.arrow-image:hover {
  transform: scale(1.1);
  opacity: 0.3;
  filter: brightness(1.2);
}

.arrow-container:hover .arrow-image {
  transform: scale(1.1) rotate(5deg);
  opacity: 0.3;
}

@keyframes slideUpFromBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* Scroll reveal animation for precision section */
.precision-engineering .precision-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.precision-engineering .precision-visual {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.precision-engineering.revealed .precision-text,
.precision-engineering.revealed .precision-visual {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  /* Disable all scroll animations on mobile to prevent conflicts */
  .precision-engineering .precision-text,
  .precision-engineering .precision-visual,
  .scroll-reveal,
  .feature-card,
  .benefit-card,
  .step,
  .series-card,
  .blog-card,
  .section-title,
  .hero-content,
  .hero-image,
  .gallery-item {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) !important;
    transition: none !important;
    animation: none !important;
  }
  
  .precision-engineering.revealed .precision-text,
  .precision-engineering.revealed .precision-visual {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
  
  /* Fix machine showcase section for mobile */
  .machine-showcase {
    padding: 4rem 0;
  }
  
  .machine-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-top: 3rem !important;
  }
  
  .machine-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 0 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
    margin-bottom: 1.2rem !important;
    overflow: hidden !important;
    position: static !important;
    transition: none !important;
    cursor: default !important;
  }
  
  .machine-image-container {
    width: 100% !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    height: 200px !important;
    overflow: hidden !important;
    position: static !important;
    aspect-ratio: unset !important;
  }
  
  .machine-image {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
    min-height: 200px !important;
    position: static !important;
  }
  
  .machine-overlay {
    position: static !important;
    background: none !important;
    padding: 1.5rem !important;
    margin-top: 0 !important;
    text-align: left !important;
    width: 100% !important;
    border-top: none !important;
    padding-top: 1.5rem !important;
  }
  
  .machine-overlay h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
  }
  
  .machine-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0;
    line-height: 1.4;
  }
  
  .machine-overlay small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 0.5rem;
    display: block;
  }
  
  /* Fix precision section mobile layout */
  .precision-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .precision-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .precision-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
  
  .precision-features {
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .precision-feature {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
  }
  
  .precision-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .precision-feature p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .precision-visual {
    height: 350px;
    order: -1;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .arrow-container {
    width: 280px;
    height: 280px;
  }
  
  .arrow-image {
    max-width: 110%;
    max-height: 110%;
    opacity: 0.2;
  }
}

/* Mobile responsive for benefits section */
@media (max-width: 768px) {
  .benefits {
    padding: 2rem 0;
  }
  
  .benefits-grid-unified {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  
  .benefit-item-unified {
    padding: 0.8rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .benefit-item-unified .benefit-icon {
    width: 30px;
    height: 30px;
  }
  
  .benefit-item-unified .benefit-content h4 {
    font-size: 0.9rem;
  }
  
  .benefit-item-unified .benefit-content p {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .benefits-grid-unified {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .benefit-item-unified {
    padding: 0.6rem;
    flex-direction: row;
    text-align: left;
    gap: 0.6rem;
  }
  
  .benefit-item-unified .benefit-icon {
    width: 25px;
    height: 25px;
  }
  
  .benefit-item-unified .benefit-content h4 {
    font-size: 0.85rem;
  }
  
  .benefit-item-unified .benefit-content p {
    font-size: 0.65rem;
  }
}
  
  /* Founder's Message Mobile */
  .founders-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .founders-visual {
    position: static;
    order: -1;
  }
  
  .portrait-frame {
    width: 150px;
    height: 150px;
  }
  
  .initials {
    font-size: 2rem;
  }
  
  .company-timeline {
    flex-direction: row;
    gap: 1rem;
  }
  
  .timeline-item {
    flex: 1;
    padding: 0.8rem;
  }
  
  .timeline-year {
    font-size: 1rem;
  }
  
  .timeline-text {
    font-size: 0.8rem;
  }
  
  /* Compliance Mobile */
  .compliance-section {
    padding: 2rem 0;
  }
  
  .compliance-standards {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .compliance-standards h3 {
    font-size: 1.1rem;
  }
  
  /* Machine Showcase Mobile */
  .machine-showcase {
    padding: 2rem 0;
  }
  
  .machine-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .machine-image-container {
    aspect-ratio: 4/3;
  }
  
  .machine-overlay {
    padding: 1.5rem;
  }
  
  .machine-overlay h3 {
    font-size: 1.25rem;
  }
  
  .machine-overlay p {
    font-size: 0.9rem;
  }
  
  .machine-overlay small {
    font-size: 0.7rem;
    display: none; /* Hide dimensions on mobile */
  }
  
  /* Benefits Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Navigation Mobile */
  .nav-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-btn {
    min-width: auto;
    width: 100%;
    justify-content: center;
  }
  
  .prev-btn, .next-btn {
    justify-content: center;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -10px;
  right: 10px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #ccc;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: white;
  font-size: 1.1rem;
  margin-top: 15px;
  text-align: center;
  line-height: 1.4;
}

.machine-image {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.machine-image:hover {
  transform: scale(1.02);
}
