/** Shopify CDN: Minification failed

Line 318:14 Expected identifier but found whitespace
Line 318:21 Unexpected ";"

**/
/* About Section Styles - Enhanced for Professional Design */

/* About Hero Section */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.about-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.about-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1;
}

.about-hero__title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-hero__subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Content Section */
.about-content {
  padding: 6rem 0;
  background: white;
}

.about-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-foreground, #1e293b);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-content__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-foreground-muted, #64748b);
}

.about-content__text p {
  margin-bottom: 1.5rem;
}

.about-content__text p:last-child {
  margin-bottom: 0;
}

.about-content__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content__img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Values Section */
.about-values {
  padding: 6rem 0;
  background: var(--color-background-light, #f8fafc);
}

.about-values__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-values__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-foreground, #1e293b);
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.2;
}

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

.about-values__item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-values__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-values__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-foreground, #1e293b);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.about-values__item-description {
  color: var(--color-foreground-muted, #64748b);
  line-height: 1.6;
  font-size: 1rem;
}

/* About Team Section */
.about-team {
  padding: 6rem 0;
  background: white;
}

.about-team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-team__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-foreground, #1e293b);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-team__description {
  font-size: 1.2rem;
  color: var(--color-foreground-muted, #64748b);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.about-team__member {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team__member:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-team__member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.about-team__member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-team__member:hover .about-team__member-img {
  transform: scale(1.05);
}

.about-team__member-info {
  padding: 2rem;
  text-align: center;
}

.about-team__member-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-foreground, #1e293b);
  margin-bottom: 0.5rem;
}

.about-team__member-position {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary, #3b82f6);
  margin-bottom: 1rem;
}

.about-team__member-bio {
  font-size: 0.95rem;
  color: var(--color-foreground-muted, #64748b);
  line-height: 1.5;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .about-hero__title {
    font-size: 2.5rem;
  }
  
  .about-hero__subtitle {
    font-size: 1.1rem;
  }
  
  .about-content__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-content__title,
  .about-values__title,
  .about-team__title {
    font-size: 2rem;
  }
  
  .about-values__grid {
    grid-template-columns: 1fr;
  }
  
  .about-team__grid {
    grid-template-columns: 1fr;
  }
  
  .about-hero,
  .about-content,
  .about-values,
  .about-team {
    padding: 3rem 0;
  }
  
  .about-values__item,
  .about-team__member-info {
    padding: 2rem 1.5rem;
  }
}
  align-items: center;
  justify-content: center;
}

.about-section__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  z-index: 2;
  position: relative;
}

.about-section__stat {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-section__stat:hover {
  transform: translateY(-4px) scale(1.05);
}

.about-section__stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  display: inline-block;
}

.about-section__stat-suffix {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-left: 0.25rem;
}

.about-section__stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-section__decorative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-section__shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.about-section__shape--1 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.about-section__shape--2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.about-section__shape--3 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Animation states */
[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="counter"] {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Layout variants */
.about-section[data-layout="text-right"] .about-section__content {
  grid-template-columns: 1fr 1fr;
}

.about-section[data-layout="text-right"] .about-section__text {
  order: 2;
  margin-left: auto;
}

.about-section[data-layout="text-right"] .about-section__visual {
  order: 1;
}

/* Button variants */
.btn--primary {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
}

.btn--primary:hover {
  background: transparent;
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }
  
  .about-section__container {
    padding: 0 1rem;
  }
  
  .about-section__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .about-section[data-layout="text-right"] .about-section__text {
    order: 1;
    margin: 0;
  }
  
  .about-section[data-layout="text-right"] .about-section__visual {
    order: 2;
  }
  
  .about-section__visual {
    min-height: 300px;
  }
  
  .about-section__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-section__stat {
    padding: 1.5rem;
  }
  
  .about-section__stat-number {
    font-size: 2.5rem;
  }
  
  .about-section__stat-suffix {
    font-size: 1.5rem;
  }
  
  .about-section__button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-section__content {
    gap: 2rem;
  }
  
  .about-section__visual {
    min-height: 250px;
  }
  
  .about-section__stat {
    padding: 1rem;
  }
  
  .about-section__stat-number {
    font-size: 2rem;
  }
  
  .about-section__stat-suffix {
    font-size: 1.25rem;
  }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
  .about-section__stat {
    background: rgba(31, 41, 55, 0.9);
    border-color: rgba(75, 85, 99, 0.3);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .about-section__shape {
    animation: none;
  }
  
  [data-animate],
  .about-section__image,
  .about-section__stat,
  .about-section__button {
    transition: none !important;
  }
  
  .about-section__image:hover,
  .about-section__stat:hover {
    transform: none;
  }
}
