/* Pricing Compare */
.pc-wrap {
    width: clamp(800px, 80vw, 1100px);
    margin: 2rem auto;
    padding: 0 1rem;
}

.pc-head {
    margin-bottom: .75rem;
}

.pc-title {
    margin: 0 0 1.5rem 0;
    color: var(--lgt-body-heading-two);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: inline-block;
    padding-bottom: .25rem;
}

.pc-intro {
    color: var(--lgt-body);
    margin: 1.0rem 0.25rem 0.75rem;
}

.pc-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) repeat(2, minmax(240px, 1fr));
    gap: .75rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--lgt-primary-background) 80%, var(--lgt-primary-background-accent) 100%);
}

.pc-col {
    display: grid;
    grid-auto-rows: 1fr;
}

.pc-row {
    display: contents;
}

.pc-row--head .pc-cell {
    background: #fff;
    font-weight: bold;
    color: var(--lgt-body-heading-two);
    border-bottom: 1px solid #eee;
}

.pc-col--labels .pc-row--head .pc-cell {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.pc-cell {
    padding: 1.0rem 1.0rem;
    margin: clamp(0.5rem, 0.5vw, 1.0rem);
    border-bottom: 1px solid #f0f0f0;
    border-right: 1px solid #f6f6f6;
    color: var(--lgt-body);
}

.pc-col:last-child .pc-cell {
    border-right: none;
}

.pc-row:last-child .pc-cell {
    border-bottom: none;
}

.pc-bundle {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center;    /* Centre horizontally */
    gap: .5rem;
}

.pc-bundle-name {
    font-size: clamp(1.25rem, 2.0vw, 3.0rem);
    flex: 1; /* Take all available space */
    text-align: center;
    color: var(--lgt-primary-accent);
}

.pc-badge {
    display: inline-block;
    padding: .15rem .5rem;
    border-radius: 999px;
    background: #eef5ff;
    color: #1d4ed8;
    border: 1px solid #cfe2ff;
    font-weight: 700;
    font-size: .75rem;
}

.pc-row--cta .pc-cell {
    text-align: center;
    font-size: clamp(1.25rem, 1.0vw, 2.0rem);
}

.pc-cta {
    display: inline-block;
    padding: .5rem .9rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(135deg, #4f88ff, #6772e5);
    color: #fff;
    border: 2px solid transparent;
}

.pc-cta:hover {
    color: #fff;
    text-decoration: none;
}

.pc-empty {
    margin: 1rem 0 0;
    padding: .75rem 1rem;
    border: 1px dashed #ddd;
    border-radius: 8px;
    color: #777;
    font-style: italic;
}

@media (max-width: 900px) {
    .pc-grid {
        grid-template-columns: 1fr;
    }

    .pc-col--labels {
        display: none;
    }

    .pc-col {
        border-top: 1px solid #eee;
        padding-top: .25rem;
    }

    .pc-row .pc-cell {
        border-right: none;
    }

    .pc-row--head .pc-cell {
        border-bottom: 1px solid #eee;
    }
}

.pc-link { color: var(--lgt-primary-accent); text-decoration: none; }
.pc-link:hover { text-decoration: underline; }

.pc-list { margin: .25rem 0 0; padding-left: 1.1rem; }
.pc-list li { margin: .2rem 0; }

.pc-flag {
  display: inline-block;
  margin-bottom: .35rem;
  padding: .15rem .5rem;
  border-radius: 999px;
  background: #eef5ff;
  color: #1d4ed8;
  border: 1px solid #cfe2ff;
  font-weight: 700;
  font-size: .75rem;
}


.pc-bundle-logo {
    width: clamp(128px, 256px, 96px);
    height: auto;
    margin: 0 auto;
}



/* ===== Scoped comparison table layout to avoid grid collisions ===== */
.pc-comparison { position: relative; }
.pc-comparison.pc-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pc-comparison table.pc-grid {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.pc-comparison table.pc-grid col.pc-col-label { width: 36%; }
.pc-comparison table.pc-grid col.pc-col-plan  { width: 32%; }

.pc-comparison table.pc-grid thead th {
  background: #fff;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  color: var(--lgt-body-heading-two);
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.pc-comparison table.pc-grid thead th:first-child {
  text-align: left;
  font-weight: 700;
}

.pc-comparison table.pc-grid tbody th,
.pc-comparison table.pc-grid tbody td {
  padding: 1rem;
  color: var(--lgt-body);
  vertical-align: top;
  border-bottom: 1px solid #f0f0f0;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}

.pc-comparison table.pc-grid tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--lgt-body-heading-two);
}

.pc-comparison table.pc-grid tbody tr td + td {
  border-left: 1px solid #f6f6f6;
}

.pc-comparison table.pc-grid tbody tr:last-child th,
.pc-comparison table.pc-grid tbody tr:last-child td {
  border-bottom: none;
}

/* Header content */
.pc-comparison .pc-bundle-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.pc-comparison .pc-bundle-name h2 {
  margin: .25rem 0 0;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: var(--lgt-primary-accent);
}
.pc-comparison .pc-bundle-logo {
  display: block;
  width: clamp(96px, 12vw, 128px);
  height: auto;
  margin: 0 auto;
}

/* CTA row */
.pc-comparison .pc-row--cta td { text-align: center; }
.pc-comparison .pc-row--cta .pc-cta { margin-top: .25rem; }

@media (max-width: 900px) {
  .pc-comparison table.pc-grid { min-width: 760px; }
}


.app-hero-text {
    min-width: clamp(640px, var(--nom-content-width), var(--max-content-width));
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    font-weight: normal;
    background-color: linear-gradient(135deg, #ffffff 80%, #fcf3f8 100%);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.app-hero-text p {
    margin: 0;
    font-size: clamp(1.5rem, 2.0rem, 3.0rem);
}

.app-hero-text p a {
    color: #fff;
    text-decoration: underline;
}

.app-hero-text p a:hover {
    text-decoration: none;
    color: #fff;
}