main {
  flex-direction: column;
  gap: 0;
  max-width: 1600px;
  margin: 0 auto;
}

.tag-line{
  color: var(--theme-text-muted);
  font-size: 1.2rem;
  font-weight: 600;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: var(--theme-radius-lg);
}

.btn-primary {
  background-color: var(--theme-primary);
  color: var(--theme-text-inverse);
  border: 2px solid var(--theme-primary);
}

.btn-primary:hover {
  background-color: var(--theme-primary-dark);
  border-color: var(--theme-primary-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--theme-primary);
  border: 2px solid var(--theme-primary);
}

.btn-secondary:hover {
  background-color: var(--theme-primary);
  color: var(--theme-text-inverse);
}

/* About Section */
.about-section {
  width: 100%;
  background: var(--theme-bg-page);
  padding: 5rem 2rem;
  border-radius: var(--theme-radius-xl);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--theme-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text h2 .accent {
  color: var(--theme-primary);
  white-space: nowrap;
  display: inline-block;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--theme-text-muted);
  margin-bottom: 1.5rem;
}

.link-btn {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-btn:hover {
  color: var(--theme-accent-hover);
}

.about-image {
  width: 100%;
}

.company-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--theme-radius-lg);
  border: 1px solid var(--theme-border-accent-soft);
  box-shadow: var(--theme-shadow-lg);
}

/* Featured Products Section */
.featured-section {
  width: 100%;
  background: var(--theme-bg-surface-1);
  padding: 5rem 2rem;
  border-radius: var(--theme-radius-xl);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--theme-text);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--theme-text-muted);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.featured-card {
  background: var(--theme-bg-card);
  border: 1px solid var(--theme-border-accent);
  border-radius: var(--theme-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-card:hover {
  box-shadow: var(--theme-shadow-lg);
  border-color: var(--theme-border-accent-strong);
  transform: translateY(-4px);
}

.featured-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--theme-bg-surface-1);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.08);
}

.featured-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--theme-text);
  margin: 1.5rem 1.5rem 0.75rem;
}

.featured-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--theme-text-muted);
  margin: 0 1.5rem 2rem;
}

.featured-cta {
  text-align: center;
}

/* Features Section */
.features-section {
  width: 100%;
  background: var(--theme-bg-page);
  padding: 5rem 2rem;
  border-radius: var(--theme-radius-xl);
}

.features-section .section-title {
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-item {
  background: var(--theme-bg-card);
  border: 1px solid var(--theme-border-accent);
  border-radius: var(--theme-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--theme-accent) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  background: var(--theme-bg-surface-1);
  box-shadow: var(--theme-shadow-lg);
  border-color: rgba(224, 169, 85, 0.35);
  transform: translateY(-4px);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--theme-text);
  margin-bottom: 0.75rem;
}

.feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--theme-text-muted);
  margin: 0;
}

/* Stats Section */
.stats-section {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--theme-primary) 0%,
    var(--theme-stats-gradient-end) 100%
  );
  padding: 5rem 2rem;
  position: relative;
  border-radius: var(--theme-radius-xl) var(--theme-radius-xl) 0 0;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--theme-primary) 0%,
    var(--theme-accent) 50%,
    var(--theme-primary) 100%
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--theme-text-inverse);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--theme-text-inverse);
  white-space: nowrap;
}

/* CTA Section */
.cta-section {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--theme-bg-card) 0%,
    var(--theme-bg-surface-1) 100%
  );
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--theme-border-accent);
  border-radius: 0 0 var(--theme-radius-xl) var(--theme-radius-xl);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--theme-text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--theme-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animations */
.about-section,
.featured-section,
.features-section,
.stats-section,
.cta-section {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 480ms ease forwards;
}

.featured-section {
  animation-delay: 80ms;
}

.features-section {
  animation-delay: 160ms;
}

.stats-section {
  animation-delay: 240ms;
}

.cta-section {
  animation-delay: 320ms;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-section,
  .featured-section,
  .features-section,
  .stats-section,
  .cta-section,
  .featured-card,
  .feature-item,
  .btn-primary,
  .btn-secondary {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }

  .about-section,
  .featured-section,
  .features-section,
  .stats-section,
  .cta-section {
    padding: 6rem 3rem;
  }
}
