.ccs-qc-wrap,
.ccs-qc-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.ccs-qc-wrap {
  --ccs-blue:    #1E90FF;
  --ccs-blue-dk: #1470D0;
  --ccs-navy:    #1a2a4a;
  --ccs-border:  #d6e6f7;
  --ccs-gray:    #6b7280;
  --ccs-sky:     #f5faff;
  --ccs-shm:     0 8px 40px rgba(30,144,255,.15);
  --ccs-r:       16px;
  line-height: 1.75;
}

/* SECTION WRAPPER */
.ccs-qc-section {
  background: #F2F2F2;
  padding: 84px 24px;
}

/* SECTION HEADER */
.ccs-qc-hdr {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
}
.ccs-qc-eyebrow {
  display: inline-block;
  font-size: .71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--ccs-blue);
  background: #e8f4ff;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.ccs-qc-hdr h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ccs-navy);
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: -.01em;
  position: relative;
  display: inline-block;
}
.ccs-qc-hdr h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
  margin: 10px auto 0;
}
.ccs-qc-hdr p {
  font-size: 1rem;
  color: #555;
  line-height: 1.78;
}
.ccs-qc-hdr p a {
  color: var(--ccs-blue);
  font-weight: 600;
  text-decoration: none;
}
.ccs-qc-hdr p a:hover { text-decoration: underline; }

/* GRID */
.ccs-compare-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.ccs-compare-card {
  background: #fff;
  border: 2px solid var(--ccs-border);
  border-radius: var(--ccs-r);
  padding: 30px 22px 24px;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.ccs-compare-card:hover {
  border-color: var(--ccs-blue);
  transform: translateY(-5px);
  box-shadow: var(--ccs-shm);
}
.ccs-compare-card.ccs-featured {
  border-color: var(--ccs-blue);
  background: linear-gradient(160deg, #f5faff 0%, #e8f4ff 100%);
  position: relative;
}
.ccs-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ccs-blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ICON CIRCLE */
.ccs-compare-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
}
.ccs-compare-icon i,
.ccs-compare-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #fff;
}
.ccs-icon-blue    { background: var(--ccs-blue); }
.ccs-icon-gold    { background: #e6a800; }
.ccs-icon-green   { background: #22c55e; }
.ccs-icon-navy    { background: var(--ccs-navy); }

/* CARD CONTENT */
.ccs-compare-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ccs-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.ccs-compare-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ccs-blue);
  line-height: 1;
  margin-bottom: 4px;
}
.ccs-compare-price-note {
  font-size: .75rem;
  color: var(--ccs-gray);
  margin-bottom: 18px;
}

/* FEATURE LIST */
.ccs-compare-list {
  list-style: none;
  text-align: left;
  margin-bottom: 22px;
  flex: 1;
}
.ccs-compare-list li {
  font-size: .82rem;
  color: #444;
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid #eef4fb;
}
.ccs-compare-list li:last-child { border-bottom: none; }
.ccs-li-check {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--ccs-blue);
}
.ccs-li-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--ccs-blue);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ccs-featured .ccs-li-check svg { stroke: #22c55e; }

/* BUTTON */
.ccs-btn-card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  background: var(--ccs-blue);
  color: #fff;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 3px 12px rgba(30,144,255,.25);
  cursor: pointer;
}
.ccs-btn-card:hover {
  background: var(--ccs-blue-dk);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(30,144,255,.35);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .ccs-compare-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .ccs-compare-grid { grid-template-columns: 1fr; }
  .ccs-qc-section { padding: 56px 20px; }
}
