/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --text-color: #000000;
  --background-light: #ffffff;

  /* Gradients */
  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );

  /* Typography */
  --heading-font: Helvetica, Arial, sans-serif;
  --body-font: Arial, sans-serif;
}

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

body {
  font-family: var(--body-font);
  line-height: 1.8;
  background: #fafafa;
  color: var(--text-color);
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}

/* Product Showcase 3 Styles */
.product-showcase-3 {
  padding: 100px 40px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.product-showcase-3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(129, 183, 26, 0.1),
    transparent 60%
  );
  pointer-events: none;
}

.product-showcase-3 .showcase-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Product Header */
.product-showcase-3 .product-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(129, 183, 26, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-showcase-3 .overline {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.product-showcase-3 h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--tertiary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-showcase-3 .lead-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--tertiary-color);
  max-width: 800px;
  margin: 0 auto;
}

/* Timeline Wrapper */
.product-showcase-3 .timeline-wrapper {
  position: relative;
  padding: 40px 0;
}

/* Timeline Progress Line */
.product-showcase-3 .timeline-progress {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 4px;
  z-index: 1;
}

/* Stage Item */
.product-showcase-3 .stage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
}

.product-showcase-3 .stage-item:last-child {
  margin-bottom: 0;
}

/* Stage Number */
.product-showcase-3 .stage-number {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(129, 183, 26, 0.2);
}

/* Stage Content */
.product-showcase-3 .stage-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(129, 183, 26, 0.2);
  transition: transform 0.3s ease;
}

.product-showcase-3 .stage-content:hover {
  transform: translateY(-10px);
}

/* Stage Header */
.product-showcase-3 .stage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.product-showcase-3 .stage-header h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--tertiary-color);
}

.product-showcase-3 .duration-tag {
  background: var(--primary-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

.product-showcase-3 .featured-badge {
  background: var(--secondary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
}

/* Stage Image */
.product-showcase-3 .stage-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 30px 0;
}

.product-showcase-3 .stage-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.product-showcase-3 .stage-image:hover img {
  transform: scale(1.05);
}

.product-showcase-3 .image-overlay {
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-showcase-3 .stage-image:hover .image-overlay {
  opacity: 0.1;
}

/* Stage Details */
.product-showcase-3 .stage-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

/* Feature Section */
.product-showcase-3 .feature-section {
  margin: 30px 0;
}

.product-showcase-3 .feature-section h4 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.product-showcase-3 .feature-list {
  list-style: none;
  padding: 0;
}

.product-showcase-3 .feature-list li {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--tertiary-color);
}

.product-showcase-3 .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Status Tag */
.product-showcase-3 .status-tag {
  display: inline-block;
  background: rgba(129, 183, 26, 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  margin-top: 20px;
}

/* Total Duration */
.product-showcase-3 .total-duration {
  text-align: center;
  margin-top: 60px;
}

.product-showcase-3 .duration-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 40px;
  border: 2px solid var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.product-showcase-3 .duration-icon {
  font-size: 2.5rem;
}

.product-showcase-3 .duration-text h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--tertiary-color);
  margin-bottom: 10px;
}

.product-showcase-3 .time {
  color: var(--primary-color);
  font-weight: 800;
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-showcase-3 .stage-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-showcase-3 .stage-number {
    margin: 0 auto;
  }

  .product-showcase-3 .timeline-progress {
    display: none;
  }
}

@media (max-width: 768px) {
  .product-showcase-3 {
    padding: 60px 20px;
  }

  .product-showcase-3 .product-header {
    padding: 30px;
  }

  .product-showcase-3 .stage-content {
    padding: 30px;
  }

  .product-showcase-3 .stage-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .product-showcase-3 {
    padding: 40px 15px;
  }

  .product-showcase-3 .product-header {
    padding: 20px;
  }

  .product-showcase-3 .stage-content {
    padding: 20px;
  }
}
