/* ── Deployment Options Grid ── */
.deploy-options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 64px;
}

/* ── Deployment Card ── */
.deploy-card {
  position: relative;
  background: var(--dark-2); border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  padding: 40px 36px; padding-top: 52px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.deploy-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}
.deploy-card.on-prem:hover { border-color: rgba(0, 212, 255, 0.25); }
.deploy-card.cloud:hover { border-color: rgba(245, 158, 11, 0.25); }

.deploy-card-badge {
  position: absolute; top: 16px; right: 20px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(0, 212, 255, 0.1); color: var(--cyan);
}
.deploy-card-badge.cloud-badge {
  background: rgba(245, 158, 11, 0.1); color: #f59e0b;
}

.deploy-card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.deploy-card-icon svg { width: 32px; height: 32px; }
.deploy-card-icon.on-prem-icon {
  background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.12);
  color: var(--cyan);
}
.deploy-card-icon.cloud-icon {
  background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.deploy-card h2 { font-size: 1.5rem; color: var(--white); margin-bottom: 4px; }
.deploy-card-sub { font-size: 0.95rem; color: var(--text-dim); margin-bottom: 24px; }

.deploy-card-body { flex: 1; }
.deploy-card-body > p {
  color: var(--text-dim); font-size: 0.92rem; line-height: 1.8;
  margin-bottom: 24px;
}

/* Highlights inside cards */
.deploy-highlights { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.deploy-highlight { display: flex; gap: 14px; align-items: flex-start; }
.deploy-highlight-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 212, 255, 0.06); color: var(--cyan);
}
.deploy-highlight-icon svg { width: 18px; height: 18px; }
.deploy-highlight-icon.aws { background: rgba(245, 158, 11, 0.06); color: #f59e0b; }
.deploy-highlight strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.deploy-highlight span { color: var(--text-dim); font-size: 0.84rem; line-height: 1.6; }

/* Specs grid */
.deploy-specs {
  padding: 20px; background: var(--dark-3); border-radius: var(--radius-sm);
  border: 1px solid var(--dark-4); margin-bottom: 28px;
}
.deploy-specs h4 {
  font-size: 0.72rem; color: var(--text-dimmer); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 12px;
}
.deploy-specs-grid { display: flex; flex-direction: column; gap: 8px; }
.deploy-spec {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 0.84rem; padding: 4px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.03);
}
.deploy-spec:last-child { border-bottom: none; }
.deploy-spec-label {
  width: 80px; flex-shrink: 0; font-size: 0.7rem;
  color: var(--text-dimmer); text-transform: uppercase;
  letter-spacing: 0.5px; font-weight: 600;
}
.deploy-spec span:last-child { color: var(--text-dim); }

.deploy-cta { margin-top: auto; text-align: center; justify-content: center; width: 100%; }

/* ── Comparison Table ── */
.compare-section {
  margin-bottom: 48px;
}
.compare-section h2 {
  font-size: 1.5rem; color: var(--white); margin-bottom: 24px; text-align: center;
}
.compare-table-wrap {
  overflow-x: auto; border-radius: var(--radius);
  border: 1px solid var(--dark-4);
}
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--dark-2);
}
.compare-table th {
  padding: 16px 20px; text-align: center;
  background: var(--dark-3); color: var(--white);
  font-size: 0.92rem; font-weight: 600;
  border-bottom: 1px solid var(--dark-4);
}
.compare-table th:first-child { text-align: left; width: 200px; }
.compare-table th svg { vertical-align: middle; margin-right: 6px; color: var(--cyan); }

.compare-table td {
  padding: 12px 20px; font-size: 0.88rem; color: var(--text-dim);
  border-bottom: 1px solid rgba(0, 212, 255, 0.03);
  text-align: center;
}
.compare-table td:first-child {
  text-align: left; color: var(--text); font-weight: 500;
}
.compare-table tbody tr:hover { background: rgba(0, 212, 255, 0.02); }
.compare-table .highlight-cell {
  font-size: 0.82rem; color: var(--cyan); font-weight: 500;
}

/* ── Hybrid Section ── */
.hybrid-section {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 32px; margin-bottom: 64px;
  background: var(--dark-2); border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  border-left: 3px solid rgba(0, 212, 255, 0.4);
}
.hybrid-icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 212, 255, 0.06); color: var(--cyan);
}
.hybrid-text h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 6px; }
.hybrid-text p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.8; }

/* ── Security Section ── */
.security-section {
  text-align: center; margin-bottom: 48px;
}
.security-section h2 { font-size: 1.6rem; color: var(--white); margin-bottom: 8px; }
.security-sub { color: var(--text-dim); font-size: 1rem; margin-bottom: 40px; }

.security-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; text-align: left;
}
.security-item {
  padding: 28px 24px;
  background: var(--dark-2); border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.security-item:hover { border-color: rgba(0, 212, 255, 0.2); }
.security-item-icon {
  width: 44px; height: 44px; border-radius: 10px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.12);
  color: var(--cyan);
}
.security-item-icon svg { width: 22px; height: 22px; }
.security-item h4 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.security-item p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .deploy-options { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .deploy-card { padding: 28px 24px; padding-top: 48px; }
  .hybrid-section { flex-direction: column; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.82rem; }
  .security-grid { grid-template-columns: 1fr; }
}
