/* ─── PLANS GRID ─── */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.plan-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-mid);
}
.plan-card.featured {
  border-color: var(--green);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.plan-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.plan-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─── PLAN PILLS (in FAQ answers) ─── */
.plan-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-right: 4px;
}
.plan-pill.connect {
  background: var(--green-light);
  color: var(--green-dark);
}
.plan-pill.plus {
  background: var(--green);
  color: #fff;
}

/* ─── SAFETY IMAGE ─── */
.team-image-block {
  margin: 28px 0 4px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-light);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--green-mid);
}
.team-image-block img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* ─── COMPARE TABLE ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 4px 0 8px;
  font-size: 14px;
}
.compare-table th {
  background: var(--green);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child  { border-radius: 0 8px 0 0; }
.compare-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.compare-table tr:nth-child(even) td { background: var(--green-light); }
.compare-table td:first-child { font-weight: 500; color: var(--text); }

/* ─── NOT YET ─── */
.btn-notyet {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
  font-weight: 600;
  font-size: 17px;
  padding: 14px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  font-family: "DM Sans", sans-serif;
}
.btn-notyet:hover {
  border-color: var(--green);
  background: var(--green-light);
}
.notyet-card {
  display: none;
  background: var(--white);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  margin-top: 28px;
  box-shadow: var(--shadow);
}
.notyet-card.visible { display: block; }
.notyet-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.notyet-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.notyet-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notyet-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.notyet-contact-row a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 500;
}
.notyet-contact-row a:hover { text-decoration: underline; }
.contact-icon {
  width: 34px;
  height: 34px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .btn-notyet {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
