/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--dark);
  color: var(--white);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 34, 34, 0.25);
}

.btn--yellow {
  background: var(--yellow);
  color: var(--dark);
}

.btn--yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 102, 0.5);
  filter: brightness(1.05);
}

.btn--accent {
  background: var(--purple);
  color: var(--white);
}

.btn--accent:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-button);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
}

.btn--large {
  padding: var(--space-4) var(--space-10);
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

/* Badge */
.badge {
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-caption);
  font-weight: 600;
  line-height: 1.4;
}

.badge--yellow {
  background: var(--yellow);
  color: var(--dark);
}

.badge--purple {
  background: var(--purple-light);
  color: var(--dark);
}

.badge--orange {
  background: var(--orange);
  color: var(--white);
}

.badge--lime {
  background: var(--lime);
  color: var(--dark);
}

/* Card */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card h3 {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.card p {
  color: var(--text-secondary);
  font-size: var(--text-caption);
  line-height: 1.5;
}

/* Card with icon */
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  font-size: 1.5rem;
}

.card__icon--purple { background: var(--purple-light); }
.card__icon--yellow { background: var(--yellow); }
.card__icon--lime { background: var(--lime); }

/* Card number */
.card__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--purple);
  margin-bottom: var(--space-3);
}

/* Accordion (FAQ) */
.accordion-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.accordion-item summary {
  padding: var(--space-6);
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition-base);
}

.accordion-item[open] summary::after {
  transform: rotate(180deg);
}

.accordion-item .accordion-content {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Info badge / detail item */
.info-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.info-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-item__label {
  font-size: var(--text-caption);
  color: var(--text-secondary);
}

.info-item__value {
  font-weight: 600;
  font-size: 1rem;
}

/* Pricing */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: var(--space-2);
  white-space: nowrap;
}

.pricing-card__currency {
  font-family: var(--font-body);
  font-weight: 600;
}

.pricing-card__original {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-bottom: var(--space-2);
}

.pricing-card__label {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

/* Video placeholder */
.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--purple-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder__play {
  width: 72px;
  height: 72px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-base);
}

.video-placeholder:hover .video-placeholder__play {
  transform: scale(1.1);
}

.video-placeholder__play::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent var(--purple);
  margin-left: 4px;
}

/* Team member card */
.team-card {
  text-align: center;
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.team-card__name {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: var(--text-caption);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.team-card__bio {
  font-size: var(--text-caption);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Starburst decorative shape */
.starburst {
  position: absolute;
  pointer-events: none;
}

.starburst svg {
  width: 100%;
  height: 100%;
}

/* Sparkle */
.sparkle {
  position: absolute;
  pointer-events: none;
  animation: sparkle-rotate 4s linear infinite;
}

@keyframes sparkle-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
