/* ========================================
   PAINT CORRECTION — DEDICATED PAGE
   TidalShine — Wilmington NC
   ======================================== */

/* ---- HERO ---- */
.pc-hero {
  background: var(--navy);
  padding: 72px 48px 80px;
}

.pc-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 194, 184, 0.08);
  border: 1px solid rgba(0, 194, 184, 0.2);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.pc-hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--sand);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.pc-hero-sub {
  font-size: 18px;
  color: rgba(244, 238, 224, 0.6);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}

.pc-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pc-cta-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}

.pc-cta-primary:hover {
  background: #00e2ce;
  transform: translateY(-2px);
}

.pc-cta-sm {
  font-size: 13px;
  padding: 10px 20px;
}

.pc-cta-lg {
  font-size: 16px;
  padding: 16px 36px;
}

.pc-cta-ghost {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(244, 238, 224, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid rgba(244, 238, 224, 0.2);
  padding-bottom: 1px;
}

.pc-cta-ghost:hover {
  color: var(--sand);
}

/* Hero card */
.pc-hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(0, 194, 184, 0.15);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
}

.pc-card-price {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--sand);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pc-card-meta {
  font-size: 14px;
  color: rgba(244, 238, 224, 0.5);
}

.pc-card-divider {
  height: 1px;
  background: rgba(0, 194, 184, 0.12);
  margin: 8px 0;
}

.pc-card-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pc-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(244, 238, 224, 0.7);
  line-height: 1.5;
}

.pc-perk-check {
  color: var(--teal);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- SECTIONS ---- */
.pc-section {
  background: var(--bg);
  padding: 88px 48px;
}

.pc-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pc-intro-text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 48px;
}

/* Terms grid */
.pc-terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pc-term-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1.5px solid rgba(7, 26, 46, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.pc-term-card--featured {
  border-color: rgba(130, 40, 180, 0.2);
}

.pc-term-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(130, 40, 180, 0.08);
  color: #7B30B5;
  width: fit-content;
}

.pc-term-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 194, 184, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-term-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.pc-term-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- BENEFITS ---- */
.pc-benefits-section {
  background: var(--navy);
  padding: 88px 48px;
}

.pc-benefits-section .section-label {
  color: var(--teal);
}

.pc-heading-light {
  color: var(--sand);
}

.pc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-top: -24px;
}

.pc-benefit {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pc-benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 194, 184, 0.1);
  border: 1px solid rgba(0, 194, 184, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-benefit h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--sand);
}

.pc-benefit p {
  font-size: 13px;
  color: rgba(244, 238, 224, 0.55);
  line-height: 1.65;
}

/* ---- PROCESS ---- */
.pc-process-section {
  background: var(--bg);
  padding: 88px 48px;
}

.pc-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(7, 26, 46, 0.1);
  margin-bottom: 32px;
}

.pc-process-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 24px 32px 0;
  border-right: 1px solid rgba(7, 26, 46, 0.1);
  padding-right: 32px;
}

.pc-process-step:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}

.pc-process-step:nth-child(3n - 1) {
  padding-left: 32px;
}

.pc-process-step:nth-child(3n - 2) {
  padding-left: 32px;
}

.pc-process-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.pc-process-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.pc-process-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.pc-process-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- CORRECTION TIERS ---- */
.pc-tiers-section {
  background: var(--bg-alt);
  padding: 88px 48px;
}

.pc-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.pc-tier-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid rgba(7, 26, 46, 0.1);
}

.pc-tier-card--featured {
  border-color: rgba(130, 40, 180, 0.25);
}

.pc-tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
  background: rgba(130, 40, 180, 0.08);
  color: #7B30B5;
}

.pc-tier-badge--teal {
  background: rgba(0, 194, 184, 0.1);
  color: #00A89E;
}

.pc-tier-badge--purple {
  background: rgba(90, 30, 160, 0.08);
  color: #5A1EA0;
}

.pc-tier-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.pc-tier-price {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.pc-tier-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.pc-tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pc-tier-features li {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.pc-tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 1.5px;
  background: var(--teal);
  border-radius: 1px;
}

.pc-tier-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--navy);
  color: var(--sand);
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 8px;
}

.pc-tier-cta:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-1px);
}

.pc-tier-cta--teal {
  background: var(--teal);
  color: var(--navy);
}

.pc-tier-cta--teal:hover {
  background: #00e2ce;
}

.pc-tiers-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- COMPARISON ---- */
.pc-comparison-section {
  background: var(--navy);
  padding: 88px 48px;
}

.pc-comparison-section .section-label {
  color: var(--teal);
}

.pc-comparison-section .section-heading {
  color: var(--sand);
}

.pc-comparison-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pc-comparison-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  border-radius: 16px;
}

.pc-comparison-card--before {
  background: rgba(244, 238, 224, 0.03);
  border: 1px solid rgba(244, 238, 224, 0.08);
}

.pc-comparison-card--after {
  background: rgba(0, 194, 184, 0.05);
  border: 1px solid rgba(0, 194, 184, 0.15);
}

.pc-comparison-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 238, 224, 0.4);
}

.pc-comparison-label--teal {
  color: var(--teal);
}

.pc-comparison-visual {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-comparison-visual--before svg {
  opacity: 0.6;
}

.pc-comparison-visual--after svg {
  filter: drop-shadow(0 0 20px rgba(0, 194, 184, 0.3));
}

.pc-comparison-desc {
  font-size: 13px;
  color: rgba(244, 238, 224, 0.5);
  line-height: 1.6;
  text-align: center;
  max-width: 220px;
}

.pc-comparison-arrow {
  padding: 0 24px;
  flex-shrink: 0;
}

.pc-comparison-note {
  font-size: 13px;
  color: rgba(244, 238, 224, 0.35);
  text-align: center;
  margin-top: 24px;
  font-style: italic;
}

/* ---- FAQ ---- */
.pc-faq-section {
  background: var(--bg);
  padding: 88px 48px;
}

.pc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: -24px;
}

.pc-faq-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(7, 26, 46, 0.08);
  padding-right: 48px;
}

.pc-faq-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid rgba(7, 26, 46, 0.08);
}

.pc-faq-item:nth-child(even) {
  padding-left: 48px;
}

.pc-faq-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.pc-faq-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.pc-faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- CTA ---- */
.pc-cta-section {
  background: var(--bg-alt);
  padding: 96px 48px;
  text-align: center;
}

.pc-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pc-cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pc-cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .pc-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pc-terms-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pc-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    border-top: none;
  }

  .pc-process-step {
    border-right: none;
    padding: 0;
    border-bottom: 1px solid rgba(7, 26, 46, 0.08);
    padding-bottom: 24px;
  }

  .pc-process-step:nth-child(3n),
  .pc-process-step:nth-child(3n - 1),
  .pc-process-step:nth-child(3n - 2) {
    padding-left: 0;
    padding-right: 0;
  }

  .pc-process-step:last-child,
  .pc-process-step:nth-last-child(2) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .pc-tiers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pc-faq-grid {
    grid-template-columns: 1fr;
  }

  .pc-faq-item {
    padding-right: 0;
    border-right: none;
    padding-left: 0;
  }

  .pc-faq-item:nth-child(even) {
    padding-left: 0;
  }

  .pc-faq-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(7, 26, 46, 0.08);
  }

  .pc-faq-item:last-child {
    border-bottom: none;
  }

  .pc-comparison-grid {
    flex-direction: column;
    gap: 16px;
  }

  .pc-comparison-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

@media (max-width: 768px) {
  .pc-hero {
    padding: 56px 24px 64px;
  }

  .pc-section,
  .pc-process-section,
  .pc-tiers-section,
  .pc-faq-section,
  .pc-cta-section {
    padding: 56px 24px;
  }

  .pc-benefits-section {
    padding: 56px 24px;
  }

  .pc-comparison-section {
    padding: 56px 24px;
  }

  .pc-hero-card {
    padding: 24px;
  }

  .pc-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pc-cta-primary,
  .pc-cta-ghost {
    width: 100%;
    text-align: center;
  }

  .pc-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pc-comparison-card {
    padding: 24px;
  }

  .pc-cta-section {
    padding: 64px 24px;
  }
}

@media (max-width: 480px) {
  .pc-card-price {
    font-size: 36px;
  }
}