/* ===================================
   Components - Lapify
   =================================== */

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: #E64A19;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-sm);
}

.card-text {
  color: var(--gray);
  line-height: 1.7;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--accent) 80%, transparent 100%);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  position: absolute;
  top: -10px;
  right: -10px;
  box-shadow: var(--shadow-lg);
}

/* List Styles */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 0.75rem 0;
  padding-left: 3rem;
  position: relative;
  color: var(--gray-dark);
  line-height: 1.6;
  font-size: 1.5rem;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
}

.cross-list {
  list-style: none;
  padding: 0;
}

.cross-list li {
  padding: 0.75rem 0;
  padding-left: 3rem;
  position: relative;
  color: var(--gray-dark);
  line-height: 1.6;
  font-size: 1.2rem;
  font-weight: 600;
}

.cross-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ef4444;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}

/* Pricing Card */
.pricing-card {
  background: #fded89ff;
  border-radius: var(--radius-2xl);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
  transform: scale(1.05);
  background: #fde047;
  border: 3px solid var(--dark);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
  padding: 0.875rem 1.125rem;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 3px solid var(--dark);
  border-bottom: 4px solid var(--dark);
  border-radius: 0;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.pricing-name::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-xs);
}

.pricing-price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

.pricing-duration {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.pricing-description {
  color: var(--gray-dark);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-dark);
  line-height: 1.5;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.875rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dark);
  font-weight: bold;
  font-size: 1.25rem;
}

.pricing-recommended {
  background: var(--bg-secondary);
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.pricing-recommended-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--spacing-xs);
  font-size: 0.875rem;
}

.pricing-recommended ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-recommended li {
  color: var(--gray-dark);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-recommended li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: var(--spacing-xl) 0;
}

.timeline-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.timeline-item::after {
  content: "→";
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--primary);
  font-weight: bold;
}

.timeline-item:nth-child(3)::after,
.timeline-item:nth-child(6)::after {
  content: "";
}

.timeline-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.timeline-content {
  width: 100%;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--spacing-xs);
  line-height: 1.3;
}

.timeline-duration {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  display: inline-block;
  background: var(--bg-light-blue);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.timeline-description {
  color: var(--gray-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
