/* ════════════════════════════════════════════════════════════════
   VLink Outline — Features grid + limits table ([vlink_outline_features])
   ════════════════════════════════════════════════════════════════ */

.vog-features {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #0f172a;
}
.vog-features-head { text-align: center; margin-bottom: 32px; }
.vog-features-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ef6c1a;
  margin-bottom: 8px;
}
.vog-features-title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0f172a;
  margin: 0 0 10px;
}
.vog-features-lead {
  font-size: 15px;
  color: #475569;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

.vog-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.vog-features-card {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.vog-features-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}
.vog-features-card-icon { font-size: 28px; line-height: 1; margin-bottom: 10px; }
.vog-features-card-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin: 0 0 8px;
}
.vog-features-card-body { font-size: 13px; line-height: 1.6; color: #334155; margin: 0; }
.vog-features-card-body b { color: #0f172a; }

@media (max-width: 880px) { .vog-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .vog-features-grid { grid-template-columns: 1fr; } }

/* Limits + guarantees panel */
.vog-features-limits {
  padding: 28px 24px;
  background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
  border: 1px solid #bae6fd;
  border-radius: 14px;
}
.vog-features-limits-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0c4a6e;
  margin: 0 0 6px;
}
.vog-features-limits-sub { font-size: 13px; color: #475569; margin: 0 0 18px; }
.vog-features-limits-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.vog-features-limits-table th,
.vog-features-limits-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #e0e7ff;
  vertical-align: top;
}
.vog-features-limits-table tr:last-child th,
.vog-features-limits-table tr:last-child td { border-bottom: none; }
.vog-features-limits-table th {
  width: 200px;
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
}
.vog-features-limits-table td { color: #334155; line-height: 1.55; }
.vog-features-limits-table td a {
  color: #ef6c1a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dotted #fbbf24;
}
.vog-features-limits-table td a:hover { border-bottom-style: solid; }
.vog-features-limits-table td b { color: #0f172a; }

@media (max-width: 720px) {
  .vog-features-limits-table th { width: auto; display: block; padding-bottom: 4px; }
  .vog-features-limits-table td { display: block; padding-top: 0; padding-bottom: 14px; }
}
