/* 智能合同比对系统 — 对齐源站渲染结构 */

.ct-page {
  min-height: 100vh;
  background: #fff;
  color: hsl(0 0% 7%);
}

.ct-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .ct-container { padding: 0 1.5rem; } }

.ct-section { width: 100%; padding: 4rem 0; }
@media (min-width: 768px) { .ct-section { padding: 2rem 0; } }

.ct-bg-white { background: #fff; }
.ct-bg-muted { background: #f7f8f9; }

.ct-header { text-align: center; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .ct-header { margin-bottom: 4rem; } }
#overview .ct-header { margin-bottom: 1rem; }
.ct-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}
@media (min-width: 768px) { .ct-h2 { font-size: 1.875rem; } }
.ct-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.ct-line { width: 2rem; height: 2px; background: var(--primary); }
.ct-en {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero */
.ct-hero {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
}
.ct-hero-photo {
  position: absolute;
  inset: 0;
  background: url('/products/aadks7iugumtg_ve_miaoda-4f053c2d.png') center / cover no-repeat;
}
.ct-hero-orb1 {
  position: absolute;
  top: -8rem; right: -8rem;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.2);
  filter: blur(120px);
  pointer-events: none;
}
.ct-hero-orb2 {
  position: absolute;
  bottom: -5rem; left: -5rem;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.1);
  filter: blur(100px);
  pointer-events: none;
}
.ct-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.ct-hero-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem;
}
@media (min-width: 768px) { .ct-hero-inner { padding: 8rem 1.5rem; } }
@media (min-width: 1024px) { .ct-hero-inner { padding: 10rem 1.5rem; } }
.ct-hero-copy { max-width: 48rem; }
.ct-hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.ct-hero-label-line { width: 2.5rem; height: 2px; background: var(--primary); }
.ct-hero-label-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: hsl(351 79% 54% / 0.9);
}
.ct-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .ct-hero h1 { font-size: 3rem; line-height: 1; } }
@media (min-width: 1024px) { .ct-hero h1 { font-size: 3.75rem; line-height: 1; } }
.ct-hero h1 .ct-accent { color: var(--primary); }
.ct-hero-desc {
  font-size: 1.125rem;
  line-height: 1.625;
  color: hsl(0 0% 100% / 0.7);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}
.ct-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .ct-hero-actions { flex-direction: row; }
}
.ct-hero-copy[data-reveal-immediate] {
  animation: ct-hero-in 0.75s ease-out forwards;
}
@keyframes ct-hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Shared cards */
.ct-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 768px) { .ct-card { padding: 1.75rem; } }
.ct-card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.ct-card-num {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  color: hsl(351 79% 54% / 0.2);
  transition: color 0.3s;
  user-select: none;
  pointer-events: none;
}
.ct-card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.4);
  box-shadow: 0 12px 24px hsl(351 79% 54% / 0.05);
}
.ct-card:hover .ct-card-bar { transform: scaleX(1); }
.ct-card:hover .ct-card-num { color: hsl(351 79% 54% / 0.3); }
.ct-card:hover .ct-card-icon { background: hsl(351 79% 54% / 0.15); }
.ct-card:hover .ct-card-title { color: var(--primary); }
.ct-card-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.5rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.ct-card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}
.ct-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.ct-card-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted);
}

.ct-pain-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .ct-pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ct-pain-grid { grid-template-columns: repeat(4, 1fr); } }

.ct-overview-list {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ct-overview-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .ct-overview-card { padding: 2rem; }
}
.ct-overview-card .ct-card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.ct-overview-card p {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--foreground);
}

.ct-adv-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .ct-adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ct-adv-grid { grid-template-columns: repeat(3, 1fr); } }
.ct-adv-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 768px) { .ct-adv-card { padding: 1.75rem; } }
.ct-adv-side {
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 0;
  background: hsl(351 79% 54% / 0.7);
  transform: translateY(-50%);
  transition: height 0.3s;
  border-radius: 0 2px 2px 0;
}
.ct-adv-card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.4);
  box-shadow: 0 12px 24px hsl(351 79% 54% / 0.05);
}
.ct-adv-card:hover .ct-adv-side { height: 2.5rem; }
.ct-adv-card:hover .ct-card-num { color: hsl(351 79% 54% / 0.3); }
.ct-adv-card:hover .ct-adv-icon {
  background: var(--primary);
  color: #fff;
}
.ct-adv-card:hover .ct-card-title { color: var(--primary); }
.ct-adv-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s, color 0.3s;
}
.ct-adv-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.ct-adv-card .ct-card-title { margin-bottom: 0.75rem; }
.ct-adv-card .ct-card-desc { color: #6b7280; }

.ct-feat-cols {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .ct-feat-cols { grid-template-columns: repeat(2, 1fr); }
}
.ct-feat-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Comparison — aligned with Word_WPS文档防拷溯源系统 */
.ct-cmp-wrap {
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid hsl(214 13% 90% / 0.6);
  background: #fff;
}
.ct-cmp-scroll { overflow-x: auto; }
.ct-cmp-table {
  width: 100%;
  min-width: 640px;
  table-layout: fixed;
  border-collapse: collapse;
}
.ct-cmp-table th, .ct-cmp-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid hsl(214 13% 90% / 0.4);
  vertical-align: top;
  word-break: break-word;
}
.ct-cmp-table thead tr { background: #f1f5f9; }
.ct-cmp-table th.col-label { width: 25%; font-weight: 600; }
.ct-cmp-table th.col-old { width: 37.5%; font-weight: 600; color: var(--muted); }
.ct-cmp-table th.col-new {
  width: 37.5%;
  font-weight: 600;
  color: var(--primary);
  background: #fff1f2;
}
.ct-cmp-table td.col-label { font-weight: 500; }
.ct-cmp-table td.col-old { color: var(--muted); }
.ct-cmp-table td.col-new { background: #fff1f2; }
.ct-cmp-table tbody tr:hover { background: #f8fafc; }
.ct-cmp-table tbody tr:last-child td { border-bottom: 0; }
.ct-cell { display: flex; align-items: flex-start; gap: 0.5rem; }
.ct-cell svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.ct-cell-muted svg { color: #9ca3af; }

.ct-value-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .ct-value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ct-value-grid { grid-template-columns: repeat(4, 1fr); } }

/* CTA */
.ct-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) { .ct-cta { padding: 6rem 0; } }
.ct-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0f172a, #1e1b4b, #7f1d1d);
}
.ct-cta-orb1 {
  position: absolute;
  top: 50%; left: 25%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.2);
  filter: blur(120px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ct-cta-orb2 {
  position: absolute;
  bottom: 0; right: 25%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.1);
  filter: blur(100px);
  pointer-events: none;
}
.ct-cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(to right, white 1px, transparent 1px),
    linear-gradient(to bottom, white 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.ct-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
}
.ct-cta h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.ct-cta p {
  font-size: 1.125rem;
  line-height: 1.625;
  color: hsl(0 0% 100% / 0.7);
  margin-bottom: 2.5rem;
}
.ct-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .ct-cta-actions { flex-direction: row; }
}
.ct-cta .btn-ghost {
  border-color: hsl(0 0% 100% / 0.3);
  color: #fff;
}
.ct-cta .btn-ghost:hover {
  background: hsl(0 0% 100% / 0.1);
}

/* Overview timeline */
.ct-overview-timeline {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ct-overview-item {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid hsl(351 79% 54% / 0.3);
}
.ct-overview-num {
  position: absolute;
  left: -11px;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px hsl(351 79% 54% / 0.35);
}
.ct-overview-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--foreground);
}

/* Feature modules horizontal */
.ct-feat-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ct-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
.ct-feat-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 768px) { .ct-feat-card { padding: 1.75rem; } }
.ct-feat-card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.4);
  box-shadow: 0 12px 24px hsl(351 79% 54% / 0.05);
}
.ct-feat-card:hover .ct-card-bar { transform: scaleX(1); }
.ct-feat-card:hover .ct-card-icon { background: hsl(351 79% 54% / 0.15); }
.ct-feat-card:hover .ct-card-title { color: var(--primary); }
.ct-feat-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.ct-feat-row .ct-card-icon { margin-bottom: 0; flex-shrink: 0; }
.ct-feat-body { flex: 1; min-width: 0; }
.ct-feat-body .ct-card-title { margin-bottom: 1rem; }
.ct-feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ct-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(220 9% 46%);
}
.ct-dot {
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.6);
  flex-shrink: 0;
}

/* Deployment */
.ct-deploy-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ct-deploy-grid { grid-template-columns: repeat(2, 1fr); }
}
.ct-deploy-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 768px) { .ct-deploy-card { padding: 2rem; } }
.ct-deploy-card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.4);
  box-shadow: 0 12px 24px hsl(351 79% 54% / 0.05);
}
.ct-deploy-card:hover .ct-card-bar { transform: scaleX(1); }
.ct-deploy-card:hover .ct-card-icon { background: hsl(351 79% 54% / 0.15); }
.ct-deploy-card:hover .ct-deploy-title { color: var(--primary); }
.ct-deploy-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ct-deploy-head .ct-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  margin-bottom: 0;
}
.ct-deploy-head .ct-card-icon svg { width: 28px; height: 28px; }
.ct-deploy-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s;
}
.ct-deploy-applicable {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #6b7280;
}
.ct-deploy-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ct-deploy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #4b5563;
}
.ct-deploy-bullet {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: hsl(351 79% 54% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.ct-deploy-bullet span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--primary);
}

/* Hero label color for this product uses white/60 in source; keep primary accent line */
.ct-hero-label-text { color: hsl(0 0% 100% / 0.6); }
.ct-overview-text {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ct-overview-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: hsl(0 0% 7% / 0.8);
}
@media (min-width: 768px) {
  .ct-overview-text p { font-size: 1.125rem; }
}

.ct-feat-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ct-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
.ct-feat-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ct-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #6b7280;
}
.ct-dot {
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.6);
  flex-shrink: 0;
}
.ct-card .ct-card-desc + .ct-feat-list { margin-top: 1rem; }

.ct-deploy-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ct-deploy-grid { grid-template-columns: repeat(2, 1fr); }
}
.ct-deploy-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 768px) { .ct-deploy-card { padding: 1.75rem; } }
.ct-deploy-card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.4);
  box-shadow: 0 12px 24px hsl(351 79% 54% / 0.05);
}
.ct-deploy-card:hover .ct-card-bar { transform: scaleX(1); }
.ct-deploy-card:hover .ct-deploy-icon { background: hsl(351 79% 54% / 0.15); }
.ct-deploy-card:hover .ct-deploy-title { color: var(--primary); }
.ct-deploy-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.ct-deploy-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.ct-deploy-icon svg { width: 28px; height: 28px; display: block; }
.ct-deploy-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #111;
  transition: color 0.3s;
}

.ct-hero-label-text { color: hsl(0 0% 100% / 0.6); }
.ct-cta h4 .ct-accent { color: var(--primary); }
/* Feature horizontal cards */
.ct-feat-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ct-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
.ct-feat-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 768px) { .ct-feat-card { padding: 1.75rem; } }
.ct-feat-card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.4);
  box-shadow: 0 12px 24px hsl(351 79% 54% / 0.05);
}
.ct-feat-card:hover .ct-card-bar { transform: scaleX(1); }
.ct-feat-card:hover .ct-feat-icon { background: hsl(351 79% 54% / 0.15); }
.ct-feat-card:hover .ct-card-title { color: var(--primary); }
.ct-feat-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.ct-feat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.ct-feat-icon svg { width: 24px; height: 24px; display: block; }
.ct-feat-body { flex: 1; min-width: 0; }
.ct-feat-body .ct-card-title { margin-bottom: 0.75rem; }

/* Deploy cards — 对齐源站：p-8/md:p-10，图标悬停仅加深不填色 */
.ct-deploy-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ct-deploy-grid { grid-template-columns: repeat(2, 1fr); }
}
.ct-deploy-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 768px) { .ct-deploy-card { padding: 2.5rem; } }
.ct-deploy-card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.4);
  box-shadow: 0 12px 24px hsl(351 79% 54% / 0.05);
}
.ct-deploy-card:hover .ct-card-bar { transform: scaleX(1); }
.ct-deploy-card:hover .ct-deploy-icon {
  background: hsl(351 79% 54% / 0.15);
  color: var(--primary);
}
.ct-deploy-card:hover .ct-deploy-title { color: var(--primary); }
.ct-deploy-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s, color 0.3s;
}
.ct-deploy-icon svg { width: 28px; height: 28px; display: block; }
.ct-deploy-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  transition: color 0.3s;
}
.ct-deploy-card > .ct-card-desc {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #6b7280;
  margin: 0;
}

.ct-hero-label-text { color: hsl(0 0% 100% / 0.6); letter-spacing: 0.25em; }

/* Advantages: ensure fill effect matches source */
.ct-adv-card:hover .ct-adv-icon {
  background: var(--primary);
  color: #fff;
}
.ct-adv-side {
  border-radius: 0;
}