/* Reset only inside wrapper */
.ccs-pt-section *,
.ccs-pt-section *::before,
.ccs-pt-section *::after {
  box-sizing: border-box;
}

/* Local design variables */
.ccs-pt-section {
  --ccs-navy:    #1a2a4a;
  --ccs-blue:    #1E90FF;
  --ccs-blue-dk: #1470D0;
  --ccs-sky:     #e0f0ff;
  --ccs-sky-lt:  #f0f7ff;
  --ccs-teal:    #32CD32;
  --ccs-teal-dk: #28a828;
  --ccs-white:   #FFFFFF;
  --ccs-off:     #F2F2F2;
  --ccs-gray:    #6b7280;
  --ccs-dark:    #333333;
  --ccs-border:  #d8e8f5;
  --ccs-yellow:  #FFD700;
  --ccs-ff-head: 'Playfair Display', Georgia, serif;
  --ccs-ff-body: 'DM Sans', system-ui, sans-serif;
  --ccs-r:       12px;
  --ccs-sh:      0 4px 24px rgba(15,31,23,.07);
  --ccs-shm:     0 8px 40px rgba(15,31,23,.13);
  
  background: var(--ccs-off);
  padding: 88px 0;
  font-family: var(--ccs-ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ccs-dark);
}

.ccs-pt-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.ccs-pt-hdr {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
}

.ccs-pt-eyebrow {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ccs-blue);
  background: var(--ccs-sky);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.ccs-pt-hdr h2 {
  font-family: var(--ccs-ff-head);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--ccs-navy);
  margin: 0 0 14px;
  padding: 0;
  position: relative;
  display: inline-block;
}

.ccs-pt-hdr h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--ccs-teal);
  border-radius: 2px;
  margin: 10px auto 0;
}

.ccs-pt-hdr p {
  font-size: 1.05rem;
  color: var(--ccs-gray);
  line-height: 1.78;
  margin: 0;
  padding: 0;
}

.ccs-pt-hdr p a {
  color: var(--ccs-blue);
  font-weight: 600;
  text-decoration: none;
}

.ccs-pt-hdr p a:hover {
  text-decoration: underline;
}

/* Tab buttons */
.ccs-pt-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ccs-pt-tab {
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--ccs-ff-body);
  font-size: .87rem;
  font-weight: 600;
  border: 2px solid var(--ccs-border);
  background: #fff;
  cursor: pointer;
  transition: all .15s;
  color: var(--ccs-gray);
  line-height: 1;
}

.ccs-pt-tab.active {
  background: var(--ccs-blue);
  border-color: var(--ccs-blue);
  color: #fff;
}

.ccs-pt-tab:hover:not(.active) {
  border-color: var(--ccs-blue);
  color: var(--ccs-blue);
}

/* Price panels */
.ccs-pt-panel {
  display: none;
}

.ccs-pt-panel.active {
  display: block;
}

/* Price table */
.ccs-pt-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--ccs-r);
  overflow: hidden;
  box-shadow: var(--ccs-sh);
  font-family: var(--ccs-ff-body);
}

.ccs-pt-table thead {
  background: var(--ccs-blue);
  color: #fff;
}

.ccs-pt-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: .85rem;
  font-weight: 700;
  font-family: var(--ccs-ff-body);
}

.ccs-pt-table td {
  padding: 13px 20px;
  font-size: .87rem;
  border-bottom: 1px solid var(--ccs-border);
  color: var(--ccs-dark);
  background: #fff;
}

.ccs-pt-table tbody tr:last-child td {
  border: none;
}

.ccs-pt-table tbody tr:nth-child(even) td {
  background: var(--ccs-sky-lt);
}

.ccs-pt-table tbody tr:hover td {
  background: var(--ccs-sky);
}

.ccs-pt-table .td-price {
  font-family: var(--ccs-ff-head);
  font-weight: 700;
  color: var(--ccs-blue);
  font-size: .95rem;
}

/* Extras note */
.ccs-pt-extras {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--ccs-sky-lt);
  border: 1px solid var(--ccs-sky);
  border-radius: var(--ccs-r);
  font-size: .87rem;
  color: var(--ccs-gray);
  line-height: 1.7;
}

.ccs-pt-extras strong {
  color: var(--ccs-navy);
}

.ccs-pt-extras a {
  color: var(--ccs-blue);
  font-weight: 600;
  text-decoration: none;
}

.ccs-pt-extras a:hover {
  text-decoration: underline;
}

/* Included badges grid */
.ccs-pt-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.ccs-pt-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--ccs-border);
  border-radius: var(--ccs-r);
  box-shadow: var(--ccs-sh);
}

.ccs-pt-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  font-size: 20px;
  color: var(--ccs-blue);
}

.ccs-pt-badge-icon svg {
  width: 22px;
  height: 22px;
}

.ccs-pt-badge-text strong {
  display: block;
  font-size: .87rem;
  font-weight: 700;
  color: var(--ccs-navy);
  margin-bottom: 2px;
  font-family: var(--ccs-ff-body);
}

.ccs-pt-badge-text span {
  display: block;
  font-size: .78rem;
  color: var(--ccs-gray);
  font-family: var(--ccs-ff-body);
}

/* Bottom CTA buttons */
.ccs-pt-footer {
  text-align: center;
  margin-top: 32px;
}

/* Base button */
.ccs-pt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--ccs-r);
  font-family: var(--ccs-ff-head);
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
  transition: transform .18s, box-shadow .18s, background .15s;
}

.ccs-pt-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

/* Blue primary */
.ccs-pt-btn-primary {
  background: var(--ccs-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(30,144,255,.3);
}

.ccs-pt-btn-primary:hover {
  background: var(--ccs-blue-dk);
  color: #fff;
  box-shadow: 0 6px 28px rgba(30,144,255,.42);
}

/* White outlined */
.ccs-pt-btn-white {
  background: #fff;
  color: var(--ccs-blue);
  box-shadow: var(--ccs-sh);
  border: 2px solid var(--ccs-border) !important;
}

.ccs-pt-btn-white:hover {
  box-shadow: var(--ccs-shm);
  color: var(--ccs-blue-dk);
}

/* Responsive */
@media (max-width: 960px) {
  .ccs-pt-badges {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ccs-pt-section {
    padding: 64px 0;
  }
  .ccs-pt-tabs {
    gap: 6px;
  }
  .ccs-pt-tab {
    padding: 8px 14px;
    font-size: .8rem;
  }
  .ccs-pt-badges {
    grid-template-columns: 1fr;
  }
  .ccs-pt-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .ccs-pt-btn {
    width: 100%;
    justify-content: center;
  }
  .ccs-pt-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
