/* Medtech Section Styles */

.medtech-section {
  padding: 0;
  font-family: var(--font-primary);
  background: var(--color-darker) !important;
}

.medtech-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 80vh;
}

/* Medtech Left Panel */
.medtech-left {
  background: var(--color-darker);
  color: var(--color-light);
  padding: var(--spacing-3xl) var(--spacing-3xl) var(--spacing-3xl) 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.medtech-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.medtech-left > * {
  position: relative;
  z-index: 2;
}

.medtech-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 600;
  color: #888888;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.medtech-subtitle-large {
  font-size: 2.5rem;
  color: var(--color-light);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: auto;
}

.medtech-subtitle {
  font-size: 1.1rem;
  color: var(--color-gray);
  font-weight: 400;
  line-height: 1.6;
}

/* Medtech Right Panel */
.medtech-right {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/hero-medtech.webp');
  background-size: cover;
  background-position: center;
  padding: var(--spacing-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Medtech Product Card */
.medtech-product-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-2xl);
  padding: 2.5rem;
  color: var(--color-light);
  max-width: 400px;
  margin: 0 auto;
}

.medtech-product-branding {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.medtech-product-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.medtech-product-logo-combined {
  height: 60px;
  width: auto;
  /* No filter needed - image already has white text */
}

.medtech-product-name {
  font-family: var(--font-handwritten);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 0;
  color: var(--color-light);
}

.medtech-product-desc {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

/* Medtech CTA Button */
.medtech-cta {
  background: var(--gradient-primary);
  color: var(--color-light);
  border: none;
  padding: 0.75rem var(--spacing-lg);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-radius: var(--border-radius-lg);
  transition: all var(--animation-duration) ease;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.medtech-cta:hover {
  background: linear-gradient(135deg, #ff8c5c 0%, #ff6b35 100%);
  color: var(--color-light);
  transform: translateY(-2px);
}

/* Medtech Feature List */
.medtech-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-xl) 0;
}

.medtech-feature-item {
  padding: var(--spacing-sm) 0;
  color: var(--color-light);
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
}

.medtech-feature-item::before {
  content: "✓ ";
  color: var(--color-warning);
  font-weight: 600;
  margin-right: var(--spacing-sm);
}

/* Responsive Medtech */
@media (max-width: 968px) {
  .medtech-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .medtech-left {
    order: 1;
    padding: var(--spacing-2xl) var(--spacing-xl);
  }
  
  .medtech-right {
    order: 2;
    min-height: 60vh;
    padding: var(--spacing-2xl) var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .medtech-left,
  .medtech-right {
    padding: var(--spacing-xl) var(--spacing-md);
  }
  
  .medtech-title {
    font-size: 2rem;
  }
  
  .medtech-subtitle-large {
    font-size: 1.8rem;
  }
  
  .medtech-product-branding {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
  
  .medtech-product-logo {
    height: 40px;
  }
  
  .medtech-product-name {
    font-size: 2rem;
  }
  
  .medtech-product-card {
    padding: var(--spacing-xl);
  }
}