/* Product comparison — Digital Visiting Card vs DVC Mini Website */
.pc-section {
  position: relative;
  overflow: hidden;
  padding: 48px 0 50px;
  background: var(--dvc-light-bg);
}

.pc-section .container {
  position: relative;
  z-index: 1;
}

/* Header */
.pc-header {
  text-align: center;
  margin-bottom: 34px;
}

.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dvc-secondary);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(109, 40, 217, 0.65);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pc-badge.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pc-badge i {
  font-size: 0.55rem;
  transform: rotate(45deg);
  color: var(--dvc-primary);
}

.pc-title {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--dvc-deep-purple);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease 0.08s, transform 0.65s ease 0.08s;
}

.pc-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pc-title-gold {
  color: var(--dvc-secondary);
}

.pc-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.6s ease 0.15s;
}

.pc-title-divider.is-visible {
  opacity: 1;
}

.pc-title-divider::before,
.pc-title-divider::after {
  content: "";
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dvc-primary));
}

.pc-title-divider::after {
  background: linear-gradient(90deg, var(--dvc-primary), transparent);
}

.pc-title-diamond {
  width: 8px;
  height: 8px;
  background: var(--dvc-primary);
  transform: rotate(45deg);
  margin: 0 10px;
  flex-shrink: 0;
}

/* Compare layout: 3 cards on Row 1, 3 cards on Row 2 */
.pc-compare {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 28px 24px !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.pc-card-wrap {
  flex: 0 0 calc(33.333% - 16px) !important;
  max-width: calc(33.333% - 16px) !important;
  width: calc(33.333% - 16px) !important;
  display: flex !important;
  box-sizing: border-box !important;
}

.pc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 485px;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(59, 7, 100, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(59, 7, 100, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease;
}

.pc-card::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 12px;
  right: -8px;
  height: calc(100% - 16px);
  background: #fff;
  border: 1px solid rgba(59, 7, 100, 0.05);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(59, 7, 100, 0.05);
  z-index: -1;
}

.pc-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pc-card.is-visible:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(59, 7, 100, 0.12);
}

/* Wave headers */
.pc-card-wave {
  position: relative;
  height: 72px;
  overflow: hidden;
}

.pc-card-wave svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease;
}

.pc-card-wave-dots {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 48px;
  height: 36px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: 0.7;
  pointer-events: none;
}

.pc-card-wave--gold .pc-card-wave-dots {
  background-image: radial-gradient(rgba(59, 7, 100, 0.12) 1px, transparent 1px);
}

.pc-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 28px 26px;
}

.pc-card-icon {
  width: 52px;
  height: 52px;
  margin: -26px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(59, 7, 100, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.pc-card.is-visible:hover .pc-card-icon {
  box-shadow: 0 8px 22px rgba(59, 7, 100, 0.16);
  transform: translateY(-2px);
}

.pc-card-icon--navy {
  background: var(--dvc-deep-purple);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 18px rgba(59, 7, 100, 0.25);
}

.pc-card-icon--gold {
  background: linear-gradient(145deg, var(--dvc-magenta), var(--dvc-secondary));
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 18px rgba(109, 40, 217, 0.25);
}

.pc-card-icon svg {
  width: 28px;
  height: 28px;
}

.pc-card-name {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dvc-deep-purple);
  text-align: center;
}

.pc-card-desc {
  margin: 0 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--dvc-text-muted-light);
  text-align: center;
}

.pc-card-divider {
  height: 1px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, transparent, rgba(59, 7, 100, 0.12), transparent);
}

.pc-feature-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}

.pc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 11px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  line-height: 1.42;
  color: var(--dvc-text-dark);
  text-align: left;
}

.pc-feature-list li:last-child {
  margin-bottom: 0;
}

.pc-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  margin-top: 1px;
}

.pc-check--navy {
  background: var(--dvc-deep-purple);
  color: var(--dvc-primary);
}

.pc-check--gold {
  background: linear-gradient(145deg, var(--dvc-magenta), var(--dvc-secondary));
  color: #fff;
}

.pc-card-icon--purple-pink {
  background: linear-gradient(145deg, #6D28D9, #DB2777);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 18px rgba(109, 40, 217, 0.25);
}

.pc-card-icon--blue {
  background: linear-gradient(145deg, #0284C7, #2563EB);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
}

.pc-card-icon--emerald {
  background: linear-gradient(145deg, #059669, #10B981);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.25);
}

.pc-card-icon--amber {
  background: linear-gradient(145deg, #FF9500, #FFA500);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 18px rgba(255, 165, 0, 0.3);
}

.pc-check--purple-pink {
  background: linear-gradient(145deg, #6D28D9, #DB2777);
  color: #fff;
}

.pc-check--blue {
  background: linear-gradient(145deg, #0284C7, #2563EB);
  color: #fff;
}

.pc-check--emerald {
  background: linear-gradient(145deg, #059669, #10B981);
  color: #fff;
}

.pc-check--amber {
  background: linear-gradient(145deg, #FF9500, #FFA500);
  color: #fff;
}

/* Buttons */
.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 0 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  border-radius: 10px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: auto;
}

.pc-btn i {
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.pc-btn:hover {
  transform: translateY(-2px);
  text-decoration: none !important;
}

.pc-btn:hover i {
  transform: translateX(4px);
}

.pc-btn--navy {
  color: #ffffff !important;
  background: linear-gradient(180deg, #6D28D9 0%, #3B0764 100%) !important;
  box-shadow: 0 6px 20px rgba(59, 7, 100, 0.28) !important;
  border: none !important;
}

.pc-btn--navy:hover {
  color: #ffffff !important;
  background: linear-gradient(180deg, #7C3AED 0%, #4C1D95 100%) !important;
  box-shadow: 0 10px 28px rgba(59, 7, 100, 0.38) !important;
}

.pc-btn--gold {
  color: #fff !important;
  background: linear-gradient(180deg, var(--dvc-magenta) 0%, var(--dvc-secondary) 100%);
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.32);
}

.pc-btn--gold:hover {
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.42);
}

.pc-btn--purple-pink {
  color: #fff !important;
  background: linear-gradient(180deg, #8B5CF6 0%, #6D28D9 100%);
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.32);
}

.pc-btn--purple-pink:hover {
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.42);
}

.pc-btn--blue {
  color: #fff !important;
  background: linear-gradient(180deg, #38BDF8 0%, #0284C7 100%);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.32);
}

.pc-btn--blue:hover {
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.42);
}

.pc-btn--emerald {
  color: #fff !important;
  background: linear-gradient(180deg, #10B981 0%, #059669 100%);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.32);
}

.pc-btn--emerald:hover {
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(5, 150, 105, 0.42);
}

.pc-btn--amber {
  color: #fff !important;
  background: linear-gradient(180deg, #FFA500 0%, #FF9500 100%);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.pc-btn--amber:hover {
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(255, 165, 0, 0.5);
}

/* OR divider */
.pc-or-wrap {
  display: none;
}

/* Tablet */
@media (max-width: 991.98px) {
  .pc-section {
    padding: 64px 0 48px;
  }

  .pc-compare {
    gap: 24px 20px !important;
    max-width: 780px !important;
  }

  .pc-card-wrap {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
    width: calc(50% - 10px) !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .pc-section {
    padding: 52px 0 40px;
  }

  .pc-header {
    margin-bottom: 36px;
  }

  .pc-compare {
    gap: 24px !important;
    margin-bottom: 0;
  }

  .pc-card-wrap {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-badge,
  .pc-title,
  .pc-title-divider,
  .pc-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
